-
Notifications
You must be signed in to change notification settings - Fork 394
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.34 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
{
"name": "pilotdeck",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.13.0 <23"
},
"workspaces": [
"ui"
],
"bin": {
"pilotdeck": "./dist/src/cli/pilotdeck.js"
},
"scripts": {
"check:runtime": "node scripts/check-node-runtime.mjs",
"install:browser": "npx @playwright/mcp install-browser chrome-for-testing",
"prebuild": "npm run check:runtime && node scripts/bootstrap-pilotdeck-config.mjs && cd src/context/memory/edgeclaw-memory-core && npm run build",
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.json && node -e \"require('fs').cpSync('src/extension/plugins/builtin','dist/src/extension/plugins/builtin',{recursive:true})\"",
"server": "npm run check:runtime && tsx src/cli/pilotdeck.ts server",
"server:built": "npm run check:runtime && node dist/src/cli/pilotdeck.js server",
"skills:migrate": "tsx src/cli/pilotdeck.ts skills migrate",
"predev": "npm run check:runtime && node scripts/bootstrap-pilotdeck-config.mjs",
"dev": "node scripts/dev-launcher.mjs",
"test": "npm run build && node --test --test-force-exit --test-timeout 60000 \"dist/tests/**/*.test.js\" \"dist/tests/**/*.spec.js\"",
"e2e:real-agent-lifecycle-hooks": "npm run build && PILOTDECK_RUN_REAL_AGENT_LIFECYCLE_E2E=1 node dist/tests/agent/e2e/run-real-agent-lifecycle-hooks.js"
},
"devDependencies": {
"@types/node": "^25.0.0",
"@types/ws": "^8.18.1",
"ink-testing-library": "^4.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@google/genai": "^2.10.0",
"@larksuiteoapi/node-sdk": "^1.65.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/react": "^19.2.14",
"@types/turndown": "^5.0.6",
"@vscode/ripgrep": "^1.18.0",
"csv-parse": "^7.0.0",
"edgeclaw-memory-core": "file:src/context/memory/edgeclaw-memory-core",
"ink": "^7.0.2",
"ink-text-input": "^6.0.0",
"js-tiktoken": "^1.0.21",
"jsonrepair": "^3.14.0",
"mupdf": "^1.27.0",
"parse5": "^8.0.1",
"react": "^19.2.6",
"sharp": "^0.34.5",
"slice-ansi": "^9.0.0",
"string-width": "^8.2.1",
"strip-ansi": "^7.2.0",
"turndown": "^7.2.4",
"undici": "^8.2.0",
"weixin-ilink": "^0.1.0",
"ws": "^8.21.0",
"yaml": "^2.8.4"
},
"packageManager": "pnpm@10.32.1"
}