mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 14:22:02 +00:00
31 lines
743 B
JSON
31 lines
743 B
JSON
{
|
|
"name": "@automaker/server",
|
|
"version": "0.1.0",
|
|
"description": "Backend server for Automaker - provides API for both web and Electron modes",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"lint": "eslint src/"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/claude-agent-sdk": "^0.1.61",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^17.2.3",
|
|
"express": "^5.1.0",
|
|
"node-pty": "1.1.0-beta41",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.18",
|
|
"@types/express": "^5.0.1",
|
|
"@types/node": "^20",
|
|
"@types/ws": "^8.18.1",
|
|
"tsx": "^4.19.4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|