-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.22 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
{
"name": "shadowclaw",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:web": "npm run build --prefix web",
"build:all": "npm run build && npm run build:web",
"dev": "tsx watch src/index.ts",
"dev:web": "npm run dev --prefix web",
"dev:all": "concurrently -n api,web -c cyan,yellow \"npm run dev\" \"npm run dev:web\"",
"install:all": "npm install && npm install --prefix web",
"start": "node dist/index.js",
"run": "npm run build:all && npm start",
"test": "vitest run",
"test:mcp-server": "tsx src/test-mcp-server.ts"
},
"dependencies": {
"@mariozechner/pi-agent-core": "0.55.1",
"@mariozechner/pi-ai": "0.55.1",
"better-sqlite3": "^12.6.2",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"uuid": "^11.0.3",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"concurrently": "^9.1.0",
"supertest": "^7.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=20"
}
}