-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.13 KB
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
34
35
36
{
"name": "claude-code-everywhere",
"version": "1.0.0",
"description": "Claude Code Everywhere - Access Claude Code from anywhere via DingTalk",
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"test": "tsc && node --test tests/*.test.mjs",
"test:watch": "node --test --watch tests/*.test.mjs",
"test:path": "tsc && node --test tests/path-validator.test.mjs",
"test:command": "node --test tests/command-parser.test.mjs",
"hash-password": "node scripts/hash-password.js"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.12",
"@langchain/anthropic": "^1.3.10",
"@langchain/core": "^1.1.15",
"@langchain/openai": "^1.2.2",
"better-sqlite3": "^12.6.2",
"cors": "^2.8.5",
"dingtalk-stream": "^2.1.4",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.0.3",
"tsx": "^4.21.0",
"typescript": "^5.3.0"
}
}