2025-08-28 03:54:22 +08:00
|
|
|
{
|
|
|
|
"name": "@buster-app/cli",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "Buster CLI - TypeScript version",
|
|
|
|
"type": "module",
|
|
|
|
"bin": {
|
|
|
|
"buster": "./dist/index.js"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"prebuild": "[ \"$SKIP_ENV_CHECK\" = \"true\" ] || tsx scripts/validate-env.ts",
|
|
|
|
"dev": "bun run --watch src/index.tsx",
|
|
|
|
"build": "bun build src/index.tsx --outdir dist --target node",
|
|
|
|
"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-08-28 13:31:03 +08:00
|
|
|
"@buster/sdk": "workspace:*",
|
|
|
|
"chalk": "^5.3.0",
|
2025-08-28 03:54:22 +08:00
|
|
|
"commander": "^12.1.0",
|
2025-08-29 02:00:10 +08:00
|
|
|
"fast-glob": "^3.3.3",
|
2025-08-28 03:54:22 +08:00
|
|
|
"ink": "^5.0.1",
|
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-08-29 02:00:10 +08:00
|
|
|
"js-yaml": "^4.1.0",
|
|
|
|
"micromatch": "^4.0.8",
|
2025-08-28 03:54:22 +08:00
|
|
|
"react": "^18.3.1",
|
2025-08-28 13:31:03 +08:00
|
|
|
"zod": "^3.24.1"
|
2025-08-28 03:54:22 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2025-08-28 13:31:03 +08:00
|
|
|
"@biomejs/biome": "^1.9.4",
|
|
|
|
"@buster/env-utils": "workspace:*",
|
2025-08-28 03:54:22 +08:00
|
|
|
"@buster/typescript-config": "workspace:*",
|
|
|
|
"@buster/vitest-config": "workspace:*",
|
|
|
|
"@types/bun": "^1.1.14",
|
2025-08-29 02:00:10 +08:00
|
|
|
"@types/js-yaml": "^4.0.9",
|
|
|
|
"@types/micromatch": "^4.0.9",
|
2025-08-28 03:54:22 +08:00
|
|
|
"@types/node": "^22.10.5",
|
|
|
|
"@types/react": "^18.3.17",
|
|
|
|
"@vitest/coverage-v8": "^2.1.8",
|
2025-08-28 13:31:03 +08:00
|
|
|
"ink-testing-library": "^4.0.0",
|
|
|
|
"react-devtools-core": "^6.1.5",
|
|
|
|
"tsx": "^4.19.2",
|
|
|
|
"typescript": "^5.7.3",
|
|
|
|
"vitest": "^2.1.8"
|
2025-08-28 03:54:22 +08:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"bun": ">=1.0.0"
|
|
|
|
}
|
2025-08-28 13:59:47 +08:00
|
|
|
}
|