- Create api-server with Bun.serve: - oRPC router with stub handlers for all procedures - Auth middleware placeholder - CORS configuration - Create CLI tool with stricli: - bootstrap command for initial superuser creation - Placeholder commands for auth, user, org management Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
566 B
JSON
26 lines
566 B
JSON
{
|
|
"name": "@reviq/cli",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"bin": {
|
|
"reviq": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "bun build src/bin/reviq.ts --outdir dist --target bun",
|
|
"cli": "bun run src/bin/reviq.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"@stricli/core": "^1.2.5",
|
|
"@reviq/db": "workspace:*",
|
|
"@noble/hashes": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@macalinao/tsconfig": "catalog:",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|