Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ jobs:
- run: bun install --frozen-lockfile --ignore-scripts
- run: bun run schema:check
- run: bun run build
- run: node dist/index.js --help
- run: node scripts/smoke-node-cli.mjs
- run: bun run package:smoke

node-24-smoke:
name: Node 24 smoke
Expand All @@ -58,8 +57,7 @@ jobs:
node-version: "24.x"
- run: bun install --frozen-lockfile --ignore-scripts
- run: bun run build
- run: node dist/index.js --help
- run: node scripts/smoke-node-cli.mjs
- run: bun run package:smoke

typecheck:
name: Typecheck
Expand Down
71 changes: 8 additions & 63 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 11 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
"dist"
],
"scripts": {
"build": "shx rm -rf dist && bun build ./src/cli/index.ts --outdir ./dist --target node && shx cp -r src/templates dist/",
"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",
Expand Down Expand Up @@ -57,9 +59,15 @@
"url": "git+https://github.com/allagentsdev/allagents.git"
},
"homepage": "https://allagents.dev",
"dependencies": {
"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": "^8.0.1",
Expand All @@ -70,17 +78,8 @@
"micromatch": "^4.0.8",
"read-cmd-shim": "^4.0.0",
"simple-git": "^3.36.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "^2.5.13",
"@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",
"shx": "^0.4.0",
"typescript": "^7.0.2",
"zod": "^3.25.76",
"zod-to-json-schema": "3.25.2"
},
"engines": {
Expand Down
Loading
Loading