-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.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
{
"name": "@agegr/pi-web",
"version": "0.6.16",
"description": "Web UI for the pi coding agent",
"license": "MIT",
"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 -p 30141",
"build": "next build --webpack",
"start": "next start -p 30141",
"lint": "eslint .",
"release": "npm version patch --no-git-tag-version && npm run build && npm publish --access public"
},
"dependencies": {
"@earendil-works/pi-ai": "^0.79.0",
"@earendil-works/pi-coding-agent": "^0.79.0",
"@lobehub/icons": "^5.6.0",
"@types/react-syntax-highlighter": "^15.5.13",
"katex": "^0.16.47",
"mammoth": "^1.12.0",
"mermaid": "^11.14.0",
"next": "16.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.1",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.1",
"postcss": "^8",
"tailwindcss": "^4.2.2",
"typescript": "^5"
}
}