-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.02 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.02 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@shareai-lab/sdk-demo-dev-squad",
"version": "1.0.0",
"description": "KODE SDK 示例:三人开发小队 - 展示 Room + @mention 多 Agent 协作能力",
"type": "module",
"main": "dist/cli.js",
"bin": {
"dev-squad": "./dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "tsc && node dist/cli.js"
},
"keywords": [
"kode-sdk",
"agent",
"multi-agent",
"room",
"collaboration"
],
"author": "ShareAI Lab",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anthropics/kode-agent-sdk-examples",
"directory": "dev-squad"
},
"dependencies": {
"@shareai-lab/kode-sdk": "^2.7.2",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"picocolors": "^1.0.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/prompts": "^2.4.9",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}