2025-08-28 03:54:22 +08:00
|
|
|
{
|
|
|
|
"name": "@buster-app/cli",
|
2025-09-27 05:53:23 +08:00
|
|
|
"version": "0.3.2",
|
2025-08-28 03:54:22 +08:00
|
|
|
"description": "Buster CLI - TypeScript version",
|
|
|
|
"type": "module",
|
|
|
|
"bin": {
|
|
|
|
"buster": "./dist/index.js"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"prebuild": "[ \"$SKIP_ENV_CHECK\" = \"true\" ] || tsx scripts/validate-env.ts",
|
2025-10-01 03:14:16 +08:00
|
|
|
"build": "bun build src/index.tsx --outdir dist --target bun",
|
2025-08-28 03:54:22 +08:00
|
|
|
"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",
|
|
|
|
"lint": "biome check . --write",
|
|
|
|
"test": "vitest run",
|
|
|
|
"test:unit": "vitest run --exclude '**/*.int.test.ts' --exclude '**/*.integration.test.ts' --passWithNoTests",
|
|
|
|
"test:integration": "vitest run **/*.int.test.ts **/*.integration.test.ts",
|
|
|
|
"test:watch": "vitest watch",
|
|
|
|
"test:coverage": "vitest run --coverage",
|
|
|
|
"clean": "rm -rf dist"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2025-10-01 10:49:25 +08:00
|
|
|
"@buster/ai": "workspace:*",
|
2025-08-28 13:31:03 +08:00
|
|
|
"@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",
|
2025-08-28 13:31:03 +08:00
|
|
|
"ink-big-text": "^2.0.0",
|
|
|
|
"ink-gradient": "^3.0.0",
|
|
|
|
"ink-spinner": "^5.0.0",
|
|
|
|
"ink-text-input": "^6.0.0",
|
2025-09-06 01:39:43 +08:00
|
|
|
"js-yaml": "catalog:",
|
2025-08-29 02:00:10 +08:00
|
|
|
"micromatch": "^4.0.8",
|
2025-09-06 01:39:43 +08:00
|
|
|
"react": "catalog:",
|
2025-09-12 13:52:00 +08:00
|
|
|
"semver": "^7.6.3",
|
2025-09-06 01:29:29 +08:00
|
|
|
"zod": "catalog:"
|
2025-08-28 03:54:22 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2025-09-06 01:29:29 +08:00
|
|
|
"@biomejs/biome": "^2.2.3",
|
2025-08-28 13:31:03 +08:00
|
|
|
"@buster/env-utils": "workspace:*",
|
2025-08-28 03:54:22 +08:00
|
|
|
"@buster/typescript-config": "workspace:*",
|
|
|
|
"@buster/vitest-config": "workspace:*",
|
2025-09-06 01:39:43 +08:00
|
|
|
"@types/js-yaml": "catalog:",
|
2025-08-29 02:00:10 +08:00
|
|
|
"@types/micromatch": "^4.0.9",
|
2025-09-06 01:39:43 +08:00
|
|
|
"@types/react": "catalog:",
|
2025-09-12 13:52:00 +08:00
|
|
|
"@types/semver": "^7.5.8",
|
2025-08-28 13:31:03 +08:00
|
|
|
"ink-testing-library": "^4.0.0",
|
|
|
|
"react-devtools-core": "^6.1.5",
|
2025-09-06 01:44:08 +08:00
|
|
|
"tsx": "catalog:",
|
|
|
|
"@types/bun": "^1.2.21"
|
2025-08-28 03:54:22 +08:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"bun": ">=1.0.0"
|
|
|
|
}
|
2025-08-28 13:59:47 +08:00
|
|
|
}
|