-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.63 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "allagents",
"version": "1.16.7",
"packageManager": "[email protected]",
"description": "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
"type": "module",
"bin": {
"allagents": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun run scripts/build-package.ts",
"package:check": "bun run scripts/check-package-size.ts",
"package:smoke": "bun run scripts/smoke-packed-package.mjs",
"docs:install": "bun install --cwd docs --frozen-lockfile",
"docs:build": "bun run docs:install && 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:e2e": "bun test tests/e2e",
"bench:update": "bun run scripts/benchmark-update-noop.ts",
"smoke:mcp-oauth": "bun run scripts/smoke-mcp-oauth.ts",
"dev:mcp-server": "bun run scripts/dev-mcp-server.ts",
"schema:generate": "bun run scripts/generate-workspace-schemas.ts",
"schema:check": "bun run scripts/generate-workspace-schemas.ts --check",
"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",
"prepublishOnly": "test \"$ALLOW_PUBLISH\" = '1' || (echo 'ERROR: Use the GitHub Actions Publish workflow' && exit 1)",
"publish:latest": "bun run build && bun scripts/publish.ts latest",
"publish:next": "bun run build && bun scripts/publish.ts next",
"promote:latest": "bun scripts/tag-channel.ts latest"
},
"keywords": [
"cli",
"ai",
"agents",
"workspace",
"plugins",
"multi-repo",
"claude",
"copilot",
"codex"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/allagentsdev/allagents.git"
},
"homepage": "https://allagents.dev",
"devDependencies": {
"@biomejs/biome": "^2.5.13",
"@clack/prompts": "^1.8.1",
"@modelcontextprotocol/sdk": "^1.30.0",
"@types/bun": "1.4.2",
"@types/js-yaml": "^4.0.9",
"@types/micromatch": "^4.0.10",
"@types/node": "^22.0.0",
"ajv": "8.20.0",
"chalk": "^6.0.0",
"cmd-ts": "^0.15.0",
"execa": "^10.0.1",
"fast-glob": "^3.3.3",
"gray-matter": "^4.0.3",
"js-yaml": "^5.4.1",
"json5": "^2.2.3",
"micromatch": "^4.0.8",
"read-cmd-shim": "^7.0.0",
"simple-git": "^3.36.0",
"typescript": "^7.0.2",
"zod": "^4.6.5"
},
"engines": {
"node": ">=22.0.0",
"bun": ">=1.0.0"
}
}