2025-10-28 13:05:42 +00:00
|
|
|
{
|
|
|
|
|
"name": "@serve.zone/onebox",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"exports": "./mod.ts",
|
2025-11-18 00:03:24 +00:00
|
|
|
"nodeModulesDir": "auto",
|
2025-10-28 13:05:42 +00:00
|
|
|
"tasks": {
|
|
|
|
|
"test": "deno test --allow-all test/",
|
|
|
|
|
"test:watch": "deno test --allow-all --watch test/",
|
|
|
|
|
"compile": "bash scripts/compile-all.sh",
|
2025-11-18 00:03:24 +00:00
|
|
|
"dev": "deno run --allow-all --unstable-ffi --watch mod.ts server --ephemeral --monitor"
|
2025-10-28 13:05:42 +00:00
|
|
|
},
|
|
|
|
|
"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",
|
2025-11-18 19:34:26 +00:00
|
|
|
"@apiclient.xyz/docker": "npm:@apiclient.xyz/docker@2.1.0",
|
2025-11-18 00:03:24 +00:00
|
|
|
"@apiclient.xyz/cloudflare": "npm:@apiclient.xyz/cloudflare@6.4.3",
|
2025-11-24 01:31:15 +00:00
|
|
|
"@push.rocks/smartacme": "npm:@push.rocks/smartacme@^8.0.0",
|
|
|
|
|
"@push.rocks/smartregistry": "npm:@push.rocks/smartregistry@^1.8.0",
|
|
|
|
|
"@push.rocks/smarts3": "npm:@push.rocks/smarts3@^5.1.0"
|
2025-10-28 13:05:42 +00:00
|
|
|
},
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"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": {
|
|
|
|
|
"tags": ["recommended"]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|