This repository has been archived on 2026-08-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
pi-web/package.json
T

28 lines
688 B
JSON

{
"name": "pi-web-poc",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "sh -c 'npm run dev:server & npm run dev:client & wait'",
"dev:server": "tsx watch src/server/index.ts",
"dev:client": "vite --host 0.0.0.0",
"build": "tsc && vite build",
"start": "tsx src/server/index.ts"
},
"dependencies": {
"@fastify/static": "^8.3.0",
"@fastify/websocket": "^11.2.0",
"@mariozechner/pi-coding-agent": "^0.73.0",
"fastify": "^5.6.1",
"lit": "^3.3.1"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/ws": "^8.18.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^7.2.4"
}
}