-
Notifications
You must be signed in to change notification settings - Fork 381
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.32 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.32 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
{
"name": "opensquad",
"version": "0.1.15",
"description": "Multi-agent orchestration framework — create AI squads that work together",
"type": "module",
"bin": {
"opensquad": "bin/opensquad.js"
},
"scripts": {
"test": "node --test tests/*.test.js",
"lint": "eslint src/ bin/ tests/",
"version": "node -e \"require('fs').writeFileSync('templates/_opensquad/.opensquad-version', require('./package.json').version + '\\n')\" && git add templates/_opensquad/.opensquad-version"
},
"keywords": [
"claude-code",
"ai-agents",
"multi-agent",
"orchestration",
"squads"
],
"author": "Renato Asse (https://github.com/renatoasse)",
"homepage": "https://github.com/renatoasse/opensquad#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/renatoasse/opensquad.git"
},
"bugs": {
"url": "https://github.com/renatoasse/opensquad/issues"
},
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"files": [
"bin/",
"src/",
"agents/",
"skills/",
"templates/",
"_opensquad/",
"dashboard/"
],
"dependencies": {
"@inquirer/checkbox": "^5.1.0",
"@inquirer/input": "^5.0.0",
"@inquirer/select": "^5.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.3",
"globals": "^17.4.0"
}
}