Files
publisher-dashboard/apps/cli/package.json
RevIQ 9158146462 Build api-server and cli as compiled binaries
- Rename api-server package to @reviq/api-server
- Add --compile flag to bun build for both packages
- Output standalone executables instead of bundled JS

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-09 17:11:20 +08:00

29 lines
684 B
JSON

{
"name": "@reviq/cli",
"version": "0.0.0",
"private": true,
"type": "module",
"bin": {
"reviq": "./dist/reviq"
},
"scripts": {
"build": "bun build src/bin/reviq.ts --compile --outfile dist/reviq",
"cli": "bun run src/bin/reviq.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint . --cache",
"clean": "rm -rf dist .eslintcache"
},
"dependencies": {
"@stricli/core": "^1.2.5",
"@reviq/db": "workspace:*",
"@noble/hashes": "^2.0.1"
},
"devDependencies": {
"@macalinao/eslint-config": "catalog:",
"@macalinao/tsconfig": "catalog:",
"@types/bun": "catalog:",
"eslint": "catalog:",
"typescript": "catalog:"
}
}