-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.94 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.94 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
72
{
"name": "allagents",
"version": "0.34.1",
"description": "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
"type": "module",
"bin": {
"allagents": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "shx rm -rf dist && bun build ./src/cli/index.ts --outdir ./dist --target node && shx cp -r src/templates dist/",
"docs:install": "bun install --cwd docs",
"docs:build": "bun run --cwd docs build",
"dev": "bun run src/cli/index.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"test:integration": "bats tests/integration/*.bats",
"typecheck": "tsc --noEmit",
"lint": "biome lint src",
"lint:fix": "biome lint --write src",
"format": "biome format --write src",
"check": "biome check src",
"check:fix": "biome check --write src",
"prepare": "bun run build && (test -d .git && bunx prek install -t pre-push || true)",
"release": "bun run scripts/release.ts",
"release:next": "bun run scripts/release.ts next",
"publish:next": "bun run build && bun publish --tag next"
},
"keywords": [
"cli",
"ai",
"agents",
"workspace",
"plugins",
"multi-repo",
"claude",
"copilot",
"codex"
],
"author": "",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^1.0.0",
"chalk": "^5.6.2",
"cmd-ts": "^0.14.3",
"execa": "^8.0.1",
"fast-glob": "^3.3.3",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"micromatch": "^4.0.8",
"simple-git": "^3.30.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@j178/prek": "^0.3.0",
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"@types/micromatch": "^4.0.10",
"@types/node": "^20.11.5",
"shx": "^0.4.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
}
}