buster/apps/cli/package.json

60 lines
1.8 KiB
JSON
Raw Normal View History

{
"name": "@buster-app/cli",
2025-09-27 05:53:23 +08:00
"version": "0.3.2",
"description": "Buster CLI - TypeScript version",
"type": "module",
"bin": {
"buster": "./dist/index.js"
},
"scripts": {
2025-10-04 02:52:45 +08:00
"prebuild": "[ \"$SKIP_ENV_CHECK\" = \"true\" ] || (tsx scripts/validate-env.ts && pnpm run typecheck)",
2025-10-01 03:14:16 +08:00
"build": "bun build src/index.tsx --outdir dist --target bun",
"build:dry-run": "tsc --noEmit",
"build:standalone": "bun build src/index.tsx --compile --outfile dist/buster",
"start": "bun run dist/index.js",
"typecheck": "tsc --noEmit",
2025-10-04 02:52:45 +08:00
"lint": "biome check --write",
"test": "vitest run",
2025-10-04 02:52:45 +08:00
"test:unit": "vitest run --exclude '**/*.int.test.ts' --exclude '**/*.integration.test.ts'",
"test:integration": "vitest run **/*.int.test.ts **/*.integration.test.ts",
2025-10-04 02:52:45 +08:00
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"clean": "rm -rf dist"
},
"dependencies": {
2025-10-01 10:49:25 +08:00
"@buster/ai": "workspace:*",
"@buster/sdk": "workspace:*",
2025-08-29 02:00:20 +08:00
"@buster/server-shared": "workspace:*",
2025-09-06 01:29:29 +08:00
"chalk": "^5.6.0",
"commander": "^14.0.0",
2025-08-29 02:00:10 +08:00
"fast-glob": "^3.3.3",
2025-09-06 01:29:29 +08:00
"ink": "^6.2.3",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"js-yaml": "catalog:",
2025-08-29 02:00:10 +08:00
"micromatch": "^4.0.8",
"react": "catalog:",
"semver": "^7.6.3",
2025-09-06 01:29:29 +08:00
"zod": "catalog:"
},
"devDependencies": {
2025-09-06 01:29:29 +08:00
"@biomejs/biome": "^2.2.3",
"@buster/env-utils": "workspace:*",
"@buster/typescript-config": "workspace:*",
"@buster/vitest-config": "workspace:*",
"@types/js-yaml": "catalog:",
2025-08-29 02:00:10 +08:00
"@types/micromatch": "^4.0.9",
"@types/react": "catalog:",
"@types/semver": "^7.5.8",
"ink-testing-library": "^4.0.0",
"react-devtools-core": "^6.1.5",
"tsx": "catalog:",
"@types/bun": "^1.2.21"
},
"engines": {
"bun": ">=1.0.0"
}
}