Files
onebox/deno.json

53 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "@serve.zone/onebox",
2025-11-26 22:05:25 +00:00
"version": "1.4.0",
"exports": "./mod.ts",
2025-11-18 00:03:24 +00:00
"nodeModulesDir": "auto",
"tasks": {
"test": "deno test --allow-all test/",
"test:watch": "deno test --allow-all --watch test/",
"compile": "bash scripts/compile-all.sh",
2025-11-24 19:52:35 +00:00
"dev": "pnpm run watch"
},
"imports": {
2025-11-18 00:03:24 +00:00
"@std/path": "jsr:@std/path@^1.1.2",
"@std/fs": "jsr:@std/fs@^1.0.19",
"@std/http": "jsr:@std/http@^1.0.21",
"@std/assert": "jsr:@std/assert@^1.0.15",
"@std/encoding": "jsr:@std/encoding@^1.0.10",
"@db/sqlite": "jsr:@db/sqlite@0.12.0",
"@push.rocks/smartdaemon": "npm:@push.rocks/smartdaemon@^2.1.0",
"@apiclient.xyz/docker": "npm:@apiclient.xyz/docker@^5.1.0",
2025-11-18 00:03:24 +00:00
"@apiclient.xyz/cloudflare": "npm:@apiclient.xyz/cloudflare@6.4.3",
"@push.rocks/smartacme": "npm:@push.rocks/smartacme@^8.0.0",
"@push.rocks/smartregistry": "npm:@push.rocks/smartregistry@^2.2.0",
"@push.rocks/smarts3": "npm:@push.rocks/smarts3@^5.1.0"
},
"compilerOptions": {
2025-11-26 18:20:02 +00:00
"lib": [
"deno.window",
"deno.ns"
],
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noUnusedLocals": false,
"noUnusedParameters": false
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve"
},
"lint": {
"rules": {
2025-11-26 18:20:02 +00:00
"tags": [
"recommended"
]
}
}
}