Files
WRNexusJS/packages/cli/package.json
T
ClintchizandClaude Opus 5 2f075df42c
Quality / quality (ubuntu-latest) (push) Failing after 9m55s
Quality / quality (windows-latest) (push) Canceled after 0s
release: patch cli, compiler, core, csr, syntax, validation
Typed, callable api blocks for .wrn files: sectioned request/response/error,
callable from client code as api.name(input), type-checked by tsc against the
route contracts.

Also two fixes found along the way: defineEndpoint never received its input
through the real router, so every typed endpoint was validating undefined; and
v.boolean() silently coerced any unrecognised string to false.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-19 21:36:44 +05:30

38 lines
994 B
JSON

{
"name": "@wrnexus/cli",
"version": "0.8.46",
"type": "module",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./workspace": "./src/workspace.ts"
},
"bin": {
"wrnexus": "src/index.ts"
},
"files": [
"src"
],
"dependencies": {
"@wrnexus/core": "workspace:*",
"@wrnexus/router": "workspace:*",
"@wrnexus/csr": "workspace:*",
"@wrnexus/compiler": "workspace:*",
"@wrnexus/styles": "workspace:*",
"@wrnexus/dev-server": "workspace:*",
"@wrnexus/ui": "workspace:*",
"@wrnexus/validation": "workspace:*",
"@wrnexus/i18n": "workspace:*",
"@wrnexus/mcp": "workspace:*",
"@wrnexus/playground": "workspace:*",
"@wrnexus/db": "workspace:*",
"@wrnexus/authz": "workspace:*",
"@wrnexus/plugin": "workspace:*",
"@wrnexus/react": "workspace:*",
"@wrnexus/syntax": "workspace:*",
"@wrnexus/typecheck": "workspace:*",
"@wrnexus/security": "workspace:*",
"selfsigned": "^5.5.0"
}
}