auth-yes/deno.json
Tyler Gillispie 474cc177ce chore: adopt dual licensing and import task history & scaffolding
- Add LICENSE-MIT and LICENSE-APACHE for dual MIT / Apache-2.0 distribution
- Update root LICENSE pointer, README.md, Deno workspace manifests, and Cargo.toml
- Add deno.lock dependency lockfile
- Format AGENTS.md system guidelines
- Import task lifecycle scaffolding and historical story specifications (extract-auth-yes, setup-ts architecture, modular workspace)
2026-08-21 15:20:36 -07:00

37 lines
877 B
JSON

{
"workspace": [
"./sdk",
"./server",
"./ui"
],
"license": "MIT OR Apache-2.0",
"tasks": {
"lint": "deno lint",
"fmt": "deno fmt",
"check": "deno check server/**/*.ts sdk/**/*.ts ui/**/*.ts infra/**/*.ts",
"test": "deno test -A",
"setup": "deno run -A infra/setup.ts"
},
"lint": {
"rules": {
"exclude": [
"no-empty",
"no-import-prefix",
"no-unversioned-import",
"no-explicit-any",
"require-await"
]
}
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "jsr:@hono/hono@4/jsx"
},
"imports": {
"@bufbuild/protobuf": "npm:@bufbuild/protobuf@^1.10.0",
"@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.7",
"@connectrpc/connect": "npm:@connectrpc/connect@^1.4.0",
"@connectrpc/connect-node": "npm:@connectrpc/connect-node@^1.4.0"
}
}