forked from michelhelsdingen/ensemble
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 815 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 815 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": "ensemble",
"version": "1.0.0",
"description": "Standalone multi-agent collaboration engine — Codex + Claude working together",
"type": "module",
"bin": {
"ensemble": "./cli/ensemble.ts"
},
"scripts": {
"dev": "tsx server.ts",
"start": "NODE_ENV=production tsx server.ts",
"build": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"monitor": "tsx cli/monitor.ts --latest",
"cli": "tsx cli/ensemble.ts"
},
"dependencies": {
"tsx": "^4.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/uuid": "^9.0.0",
"eslint": "^8.57.0",
"@typescript-eslint/parser": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"typescript": "^5.5.0",
"vitest": "^3.0.0"
}
}