-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 866 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 866 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
32
33
{
"name": "web-cc",
"version": "1.7.3",
"description": "Web interface for Claude Code CLI",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"skill:x-trends": "npx ts-node .claude/x-trends/x-trends.ts",
"skill:tophub": "npx ts-node .claude/tophub-trends/tophub.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"bcryptjs": "^2.4.3",
"cheerio": "^1.0.0",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"form-data": "^4.0.5",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.2",
"node-cron": "^4.2.1",
"node-fetch": "^2.7.0",
"p-limit": "^3.1.0",
"pg": "^8.13.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^22.10.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}