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

39 lines
1.1 KiB
JSON

{
"name": "pi-web-poc",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "bash -c 'trap \"kill 0\" EXIT; npm run dev:sessiond & npm run dev:web & npm run dev:client & wait'",
"dev:sessiond": "tsx watch src/server/sessiond.ts",
"dev:web": "tsx watch src/server/index.ts",
"dev:server": "npm run dev:web",
"dev:client": "vite --host 0.0.0.0",
"build": "tsc && vite build",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.ts\" vite.config.ts",
"start": "tsx src/server/index.ts",
"start:sessiond": "tsx src/server/sessiond.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",
"marked": "^18.0.3",
"ws": "^8.18.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.10.1",
"@types/ws": "^8.18.1",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.2",
"vite": "^7.2.4"
}
}