-
Notifications
You must be signed in to change notification settings - Fork 467
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.98 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
{
"name": "@agegr/pi-web",
"version": "0.8.6",
"description": "Web UI for the pi coding agent",
"homepage": "https://github.com/agegr/pi-web#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/agegr/pi-web.git"
},
"bugs": {
"url": "https://github.com/agegr/pi-web/issues"
},
"license": "MIT",
"engines": {
"node": ">=22.19.0"
},
"bin": {
"pi-web": "bin/pi-web.js"
},
"files": [
"bin",
".next",
"!.next/cache",
"!.next/dev",
"!.next/**/*.js.map",
"public",
"next.config.ts",
"package.json"
],
"scripts": {
"dev": "next dev -H 127.0.0.1 -p 30141",
"dev:lan": "next dev -H 0.0.0.0 -p 30141",
"build": "next build --webpack",
"start": "next start -H 127.0.0.1 -p 30141",
"start:lan": "next start -H 0.0.0.0 -p 30141",
"lint": "eslint .",
"release": "npm version patch --no-git-tag-version && npm run build && npm publish --access public"
},
"dependencies": {
"@earendil-works/pi-agent-core": "0.83.0",
"@earendil-works/pi-ai": "0.83.0",
"@earendil-works/pi-coding-agent": "0.83.0",
"@earendil-works/pi-tui": "0.83.0",
"next": "16.2.12",
"proper-lockfile": "4.1.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"undici": "8.5.0"
},
"devDependencies": {
"@lobehub/icons": "^5.6.0",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^25",
"@types/proper-lockfile": "4.1.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"eslint": "^9",
"eslint-config-next": "16.2.12",
"jiti": "^2.7.0",
"katex": "^0.16.47",
"mammoth": "^1.12.0",
"mermaid": "^11.14.0",
"postcss": "^8",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.1",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"tailwindcss": "^4.2.2",
"typescript": "^5"
}
}