buster/apps/cli/package.json

49 lines
1.5 KiB
JSON

{
"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": {
"commander": "^12.1.0",
"ink": "^5.0.1",
"react": "^18.3.1",
"zod": "^3.24.1",
"chalk": "^5.3.0"
},
"devDependencies": {
"@buster/typescript-config": "workspace:*",
"@buster/vitest-config": "workspace:*",
"@buster/env-utils": "workspace:*",
"@types/bun": "^1.1.14",
"@types/node": "^22.10.5",
"@types/react": "^18.3.17",
"@biomejs/biome": "^1.9.4",
"typescript": "^5.7.3",
"tsx": "^4.19.2",
"vitest": "^2.1.8",
"@vitest/coverage-v8": "^2.1.8",
"ink-testing-library": "^4.0.0"
},
"engines": {
"bun": ">=1.0.0"
}
}