-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 925 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 925 Bytes
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
{
"name": "spool",
"version": "0.3.4",
"private": true,
"packageManager": "pnpm@10.33.0",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"test": "turbo test",
"test:core": "pnpm --filter @spool/core test",
"test:e2e": "pnpm --filter @spool/app test:e2e",
"rebuild:native:node": "pnpm --filter @spool/core run rebuild:native:node",
"rebuild:native:electron": "pnpm --filter @spool/app run rebuild:native:electron",
"lint": "turbo lint",
"clean": "turbo clean",
"check:phantom-independence": "scripts/phantom-independence-check.sh",
"dev:install:mac": "scripts/dev-install-mac.sh",
"spool": "node packages/cli/bin/spool.js"
},
"devDependencies": {
"turbo": "^2.9.6",
"typescript": "^5.7.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"electron",
"esbuild",
"acp-extension-codex-linux-x64"
]
}
}