-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "flowpocus",
"version": "0.0.1",
"description": "Real-time collaborative canvas editor built with React Flow and Yjs",
"private": true,
"license": "MIT",
"author": "Flowpocus Contributors",
"homepage": "https://github.com/SweetRetry/flowpocus#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SweetRetry/flowpocus.git"
},
"bugs": {
"url": "https://github.com/SweetRetry/flowpocus/issues"
},
"keywords": [
"canvas",
"collaboration",
"react-flow",
"yjs",
"crdt",
"real-time",
"editor",
"whiteboard"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dev:web": "turbo dev --filter=web",
"dev:backend": "turbo dev --filter=@workspace/backend",
"dev:cli": "pnpm --filter @workspace/cli dev",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"check": "biome check --write .",
"typecheck": "turbo typecheck",
"knip": "knip",
"db:push": "pnpm --filter @workspace/database db:push",
"db:studio": "pnpm --filter @workspace/database db:studio"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@workspace/typescript-config": "workspace:*",
"knip": "^5.44.0",
"turbo": "^2.6.3",
"typescript": "5.7.3"
},
"packageManager": "pnpm@10.4.1",
"engines": {
"node": ">=20"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}