-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.51 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
68
69
70
71
72
73
74
75
76
{
"name": "angel-engine-workspace",
"private": true,
"packageManager": "bun@1.3.14",
"workspaces": [
"apps/*",
"desktop",
"mobile",
"packages/*",
"crates/angel-engine-client-napi"
],
"scripts": {
"build": "turbo run build",
"knip": "knip",
"make": "turbo run make",
"package": "turbo run package",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"prepare": "husky",
"precommit": "lint-staged --config lint-staged.config.mjs --relative",
"napi:build": "turbo run build --filter @angel-engine/client-napi",
"napi:build:debug": "turbo run build:debug --filter @angel-engine/client-napi",
"desktop:start": "bun run --filter desktop start",
"desktop:package": "turbo run package --filter desktop",
"desktop:make": "turbo run make --filter desktop",
"desktop:typecheck": "turbo run typecheck --filter desktop",
"desktop:rebuild-native": "bun run --filter desktop rebuild:native",
"claude-client:build": "turbo run build --filter @angel-engine/claude-client",
"claude-client:test": "turbo run test --filter @angel-engine/claude-client",
"js-client:build": "turbo run build --filter @angel-engine/js-client",
"js-client:playground": "bun run --filter @angel-engine/js-client playground",
"mobile:dev": "node scripts/dev-mobile.mjs",
"js-client:playground:build": "turbo run playground:build --filter @angel-engine/js-client",
"js-client:test": "turbo run test --filter @angel-engine/js-client",
"pi-client:build": "turbo run build --filter @angel-engine/pi-client",
"pi-client:test": "turbo run test --filter @angel-engine/pi-client"
},
"devDependencies": {
"@biomejs/biome": "^2.5.3",
"husky": "^9.1.7",
"knip": "6.24.0",
"lint-staged": "^17.0.8",
"turbo": "^2.10.3"
},
"trustedDependencies": [
"@electron/node-gyp",
"@google/genai",
"@parcel/watcher",
"@tailwindcss/oxide",
"electron",
"electron-winstaller",
"esbuild",
"fs-xattr",
"macos-alias",
"msgpackr-extract",
"msw",
"node-pty",
"protobufjs",
"sharp",
"unrs-resolver"
],
"patchedDependencies": {
"@anthropic-ai/claude-agent-sdk@0.3.198": "patches/@anthropic-ai__claude-agent-sdk@0.3.198.patch"
},
"overrides": {
"@babel/core": "7.29.7",
"dompurify": "3.4.11",
"hono": "4.12.25",
"js-yaml": "5.1.0",
"postcss": "8.5.10",
"qs": "6.15.2"
}
}