-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.88 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
{
"name": "@ashwin-pc/pi-web",
"version": "0.4.2",
"description": "Local/Tailscale web UI for pi coding agent.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ashwin-pc/pi-web"
},
"type": "module",
"bin": {
"pi-web": "bin/pi-web.js"
},
"exports": {
"./extensions": {
"types": "./dist/extensions.d.ts",
"import": "./dist/extensions.js"
}
},
"files": [
".pi/extensions/",
"bin/",
"contexts/",
"dist/",
"scripts/",
"docs/",
"examples/",
"server/",
"server.ts",
"supervisor.ts",
"README.md"
],
"scripts": {
"dev": "PI_WEB_DEV=1 node --import tsx supervisor.ts",
"dev:server": "PI_WEB_DEV=1 node --import tsx --watch server.ts",
"build": "vite build && tsc -p tsconfig.extensions.json",
"start": "node --import tsx server.ts",
"start:supervised": "node --import tsx supervisor.ts",
"typecheck": "tsc --noEmit",
"test": "node scripts/run-all-tests.mjs",
"test:serial": "npm run typecheck && vitest run && playwright test",
"test:e2e:parallel": "node scripts/run-all-tests.mjs --e2e-only",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"release:pack": "rm -rf release && npm run build && mkdir -p release && npm pack --pack-destination release",
"test:all": "npm test"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@earendil-works/pi-ai": "^0.80.3",
"@earendil-works/pi-coding-agent": "^0.80.3",
"highlight.js": "^11.11.1",
"lucide": "^1.14.0",
"marked": "^15.0.12",
"mermaid": "^11.15.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"ws": "^8.18.3"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/node": "^24.10.1",
"@types/ws": "^8.5.14",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.5"
}
}