-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.74 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
65
66
67
68
69
70
71
{
"name": "squadrant",
"packageManager": "pnpm@10.30.3",
"version": "0.19.2",
"description": "Multi-project orchestration for your coding agents (Claude, Codex, opencode, Gemini)",
"type": "module",
"bin": {
"squadrant": "./dist/index.js",
"squad": "./dist/index.js"
},
"files": [
"dist/",
"plugin/",
"scripts/",
"templates/"
],
"scripts": {
"build": "tsc -b --force packages/shared packages/core packages/agents packages/workspaces packages/web packages/cli && tsup",
"dev": "tsup --watch",
"test": "node scripts/heavy-lock.mjs -- vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"codex:gen-types": "bash scripts/gen-codex-types.sh"
},
"keywords": [
"squadrant",
"multi-agent",
"agent",
"orchestration",
"cmux",
"obsidian"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@inquirer/checkbox": "^4.1.5",
"chalk": "^5.4.0",
"commander": "^13.0.0",
"gray-matter": "^4.0.3",
"jsonc-parser": "^3.3.1"
},
"devDependencies": {
"@grammyjs/types": "3.28.0",
"@squadrant/agents": "workspace:*",
"@squadrant/cli": "workspace:*",
"@squadrant/core": "workspace:*",
"@squadrant/shared": "workspace:*",
"@squadrant/web": "workspace:*",
"@squadrant/workspaces": "workspace:*",
"@types/node": "^22.0.0",
"tsup": "^8.5.1",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/tu11aa/squadrant.git"
},
"homepage": "https://github.com/tu11aa/squadrant#readme",
"bugs": {
"url": "https://github.com/tu11aa/squadrant/issues"
}
}