Task 15 of the authz permissions plan: proves db store + cache + catalog + middleware + audit compose correctly, wires a real (non-dangling) example into auth-showcase, and documents the declaration/registration/precedence surface in the package README.
28 lines
819 B
JSON
28 lines
819 B
JSON
{
|
|
"name": "auth-showcase",
|
|
"version": "0.8.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun run ../../packages/cli/src/index.ts dev .",
|
|
"build": "bun run ../../packages/cli/src/index.ts build .",
|
|
"test": "bun run ../../packages/cli/src/index.ts test .",
|
|
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
"check": "bun run typecheck && bun run test && bun run build"
|
|
},
|
|
"dependencies": {
|
|
"@wrnexus/auth": "workspace:*",
|
|
"@wrnexus/authz": "workspace:*",
|
|
"@wrnexus/captcha": "workspace:*",
|
|
"@wrnexus/core": "workspace:*",
|
|
"@wrnexus/validation": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@iconify-json/lucide": "^1.2.0",
|
|
"@iconify/tailwind4": "^1.0.0",
|
|
"@tailwindcss/cli": "^4.0.0",
|
|
"tailwindcss": "^4.0.0",
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|