-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 888 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "kiro-node",
"version": "1.0.0",
"description": "Anthropic Claude API 兼容代理服务 - Node.js 版本",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"pm2:start": "cross-env PM2_NO_DAEMON= pm2 start ecosystem.config.cjs",
"pm2:stop": "pm2 stop kiro2api-node",
"pm2:restart": "pm2 restart kiro2api-node",
"pm2:reload": "pm2 reload kiro2api-node",
"pm2:delete": "pm2 delete kiro2api-node",
"pm2:logs": "pm2 logs kiro2api-node",
"pm2:monit": "pm2 monit",
"pm2:status": "pm2 status"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"tiktoken": "^1.0.22",
"uuid": "^9.0.0"
},
"devDependencies": {
"cross-env": "^10.1.0"
}
}