-
Notifications
You must be signed in to change notification settings - Fork 586
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) 路 1.95 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) 路 1.95 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
59
60
61
62
63
64
65
66
67
{
"name": "emdash-monorepo",
"private": true,
"type": "module",
"scripts": {
"dev": "nx run-many -t dev --all --parallel=10",
"build": "nx run-many -t build --all",
"test": "node tooling/scripts/test.mjs",
"lint": "nx run-many -t lint --all && node tooling/oxlint/scripts/check-allowlists.mjs",
"format": "nx run-many -t format --all",
"format:check": "nx run-many -t format:check --all",
"typecheck": "nx run-many -t typecheck --all",
"affected": "nx affected -t lint typecheck test",
"check": "node tooling/scripts/check.mjs",
"doctor": "pnpm --dir apps/emdash-desktop run doctor",
"prune:boundary-allowlists": "node tooling/oxlint/scripts/prune-boundary-allowlists.mjs",
"graph": "nx graph"
},
"devDependencies": {
"nx": "^23.0.0",
"tsx": "^4.22.4"
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.28.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.14.0",
"onFail": "download"
}
},
"packageManager": "pnpm@10.28.2",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"core-js",
"electron",
"esbuild",
"node-pty",
"nx",
"protobufjs",
"sqlite3"
],
"ignoredBuiltDependencies": [
"cpu-features",
"ssh2"
],
"ignoredOptionalDependencies": [
"@anthropic-ai/claude-agent-sdk-darwin-arm64",
"@anthropic-ai/claude-agent-sdk-darwin-x64",
"@anthropic-ai/claude-agent-sdk-linux-arm64",
"@anthropic-ai/claude-agent-sdk-linux-arm64-musl",
"@anthropic-ai/claude-agent-sdk-linux-x64",
"@anthropic-ai/claude-agent-sdk-linux-x64-musl",
"@anthropic-ai/claude-agent-sdk-win32-arm64",
"@anthropic-ai/claude-agent-sdk-win32-x64",
"@openai/codex-darwin-arm64",
"@openai/codex-darwin-x64",
"@openai/codex-linux-arm64",
"@openai/codex-linux-x64",
"@openai/codex-win32-arm64",
"@openai/codex-win32-x64"
]
}
}