-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.55 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.55 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@ensemble-ai/cli",
"version": "1.0.0",
"description": "Multi-agent collaboration engine — AI agents that work as one",
"type": "module",
"bin": {
"ensemble": "bin/ensemble.cjs"
},
"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",
"postinstall": "node ./bin/postinstall.cjs"
},
"files": [
"bin/",
"cli/",
"lib/",
"services/",
"types/",
"scripts/",
"server.ts",
"agents.json",
"collab-templates.json",
"tsconfig.json",
"package.json",
"README.md",
"LICENSE"
],
"keywords": [
"ai", "agents", "multi-agent", "collaboration",
"claude", "codex", "gemini", "tmux", "cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/michelhelsdingen/ensemble.git"
},
"homepage": "https://michelhelsdingen.github.io/ensemble/",
"bugs": {
"url": "https://github.com/michelhelsdingen/ensemble/issues"
},
"author": "Michel Helsdingen <michel@helsdingen.com>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"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"
}
}