-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.75 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
{
"name": "@waishnav/devspace",
"version": "1.0.1",
"description": "Expose a secure local coding workspace through an MCP server.",
"type": "module",
"main": "dist/server.js",
"engines": {
"node": ">=20.12 <27"
},
"bin": {
"devspace": "dist/cli.js"
},
"files": [
"dist",
"docs",
"scripts",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && npm run build:app && tsc -p tsconfig.build.json",
"build:app": "vite build",
"dev": "node scripts/dev-server.mjs",
"start": "node dist/cli.js serve",
"test": "tsx src/config.test.ts && tsx src/roots.test.ts && tsx src/skills.test.ts && tsx src/workspaces.test.ts && tsx src/review-checkpoints.test.ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^1.5.1",
"@earendil-works/pi-coding-agent": "^0.79.4",
"@modelcontextprotocol/ext-apps": "^1.7.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"@pierre/diffs": "^1.2.5",
"better-sqlite3": "^12.10.0",
"drizzle-orm": "^0.45.2",
"express": "^5.2.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"semver": "^7.8.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/semver": "^7.7.1",
"@vitejs/plugin-react": "^6.0.2",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vite": "^8.0.14"
},
"overrides": {
"protobufjs": "7.6.4",
"ws": "8.21.0"
}
}