-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "agent-swarm-cli",
"version": "0.1.0",
"description": "A local Agent Swarm Protocol CLI/TUI runtime.",
"type": "module",
"files": [
"dist",
"README.md",
"docs"
],
"bin": {
"swarm": "./dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "npm run build && node dist/index.js",
"check": "tsc -p tsconfig.json --noEmit",
"test": "node --import tsx --test \"src/**/*.test.ts\" \"src/**/*.test.tsx\"",
"evals": "npm run build && node dist/evals/local-evals.js",
"release:gate": "npm run build && node dist/evals/local-evals.js --release-gate",
"smoke": "npm run build && node dist/smoke.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"ink": "^5.0.1",
"openai": "^4.104.0",
"react": "^18.3.1",
"react-reconciler": "^0.29.2",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/react": "^18.3.12",
"@types/react-reconciler": "^0.28.9",
"tsx": "^4.20.6"
},
"engines": {
"node": ">=24.0.0"
}
}