{ "name": "allagents", "version": "1.8.0", "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", "release:finalize": "bun run scripts/release.ts finalize", "prepublishOnly": "test \"$ALLOW_PUBLISH\" = '1' || (echo 'ERROR: Use bun run publish:next, then bun run promote:latest' && exit 1)", "publish:latest": "bun run build && ALLOW_PUBLISH=1 npm publish", "publish:next": "bun run build && ALLOW_PUBLISH=1 npm publish --tag 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/EntityProcess/allagents.git" }, "homepage": "https://allagents.dev", "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" } }