GLMPilot / packages /server /package.json
E5K7's picture
Initial commit: Rebranded to GLMPilot and migrated to GLM-5 API
c2c8c8d
{
"name": "@glmpilot/server",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js"
},
"dependencies": {
"@glmpilot/shared": "*",
"@octokit/rest": "^20.0.0",
"axios": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^16.4.0",
"express": "^4.18.0",
"express-rate-limit": "^7.1.0",
"helmet": "^7.1.0",
"ioredis": "^5.3.0",
"socket.io": "^4.7.0",
"uuid": "^9.0.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"@types/uuid": "^9.0.7",
"tsx": "^4.7.0",
"typescript": "^5.4.0"
}
}