forked from bradygaster/squad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.17 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.17 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
{
"name": "@bradygaster/squad",
"version": "0.9.1",
"private": true,
"description": "Squad — Programmable multi-agent runtime for GitHub Copilot, built on @github/copilot-sdk",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"prebuild": "node scripts/bump-build.mjs && node scripts/sync-skill-templates.mjs && node scripts/sync-templates.mjs",
"build": "npm run build -w packages/squad-sdk && npm run build -w packages/squad-cli",
"sync-templates": "node scripts/sync-templates.mjs",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit -p packages/squad-sdk/tsconfig.json && tsc --noEmit -p packages/squad-cli/tsconfig.json",
"lint:eslint": "eslint packages/ test/",
"lint:docs": "markdownlint-cli2 && cspell --no-progress --dot \"docs/src/content/**/*.md\" \"README.md\"",
"dev:link": "npm run build && cd packages/squad-sdk && npm link && cd ../squad-cli && npm link",
"dev:unlink": "cd packages/squad-cli && npm unlink && cd ../squad-sdk && npm unlink",
"docs:api": "node scripts/generate-api-docs.mjs",
"docs:build": "npm run docs:api && cd docs && npm run build",
"docs:dev": "cd docs && npm run dev",
"docs:preview": "cd docs && npm run preview"
},
"engines": {
"node": ">=22.5.0"
},
"devDependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/sdk-metrics": "^2.5.1",
"@opentelemetry/sdk-trace-base": "^2.5.1",
"@playwright/test": "^1.58.2",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@vitest/coverage-v8": "^3.2.4",
"cspell": "^9.7.0",
"eslint": "^10.1.0",
"eslint-plugin-n": "^17.24.0",
"highlight.js": "^11.11.1",
"markdown-it": "^14.1.1",
"markdownlint-cli2": "^0.21.0",
"playwright": "^1.58.2",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"keywords": [
"copilot",
"multi-agent",
"squad",
"sdk"
],
"license": "MIT",
"homepage": "https://github.com/bradygaster/squad#readme",
"bugs": {
"url": "https://github.com/bradygaster/squad/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bradygaster/squad.git"
}
}