Files
video-create/web/package.json

38 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "meitu-agent",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "npx kill-port 3007 && node --import tsx/esm --watch server/index.ts",
"dev:client": "cd client && npm run dev",
"build": "cd client && npm run build",
"db:init": "node --import tsx/esm server/db/schema.ts",
"setup": "npm install && cd client && npm install"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.95.0",
"@earendil-works/pi-agent-core": "^0.74.0",
"@earendil-works/pi-ai": "^0.74.0",
"@mariozechner/pi-coding-agent": "^0.73.1",
"@types/multer": "^2.1.0",
"better-sqlite3": "^11.6.0",
"cors": "^2.8.5",
"express": "^4.21.0",
"multer": "^2.1.1",
"openai": "^6.36.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/cors": "^2.8.0",
"@types/express": "^5.0.0",
"@types/ws": "^8.5.0",
"concurrently": "^9.1.0",
"kill-port": "^2.0.1",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"type": "module"
}