Files
onebox/deno.json
T

59 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2025-10-28 13:05:42 +00:00
{
"name": "@serve.zone/onebox",
2026-05-08 16:36:58 +00:00
"version": "1.24.6",
2025-10-28 13:05:42 +00:00
"exports": "./mod.ts",
"tasks": {
"test": "deno test --allow-all test/",
"test:watch": "deno test --allow-all --watch test/",
"compile": "tsdeno compile",
2025-11-24 19:52:35 +00:00
"dev": "pnpm run watch"
2025-10-28 13:05:42 +00:00
},
"imports": {
2026-05-08 15:39:02 +00:00
"@std/path": "jsr:@std/path@^1.1.4",
"@std/fs": "jsr:@std/fs@^1.0.23",
"@std/http": "jsr:@std/http@^1.1.0",
"@std/assert": "jsr:@std/assert@^1.0.19",
2025-11-18 00:03:24 +00:00
"@std/encoding": "jsr:@std/encoding@^1.0.10",
2026-05-08 15:39:02 +00:00
"@db/sqlite": "jsr:@db/sqlite@0.13.0",
"@apiclient.xyz/docker": "npm:@apiclient.xyz/docker@^5.1.4",
"@apiclient.xyz/cloudflare": "npm:@apiclient.xyz/cloudflare@7.1.0",
"@push.rocks/smartacme": "npm:@push.rocks/smartacme@^9.5.0",
"@push.rocks/smartregistry": "npm:@push.rocks/smartregistry@^2.9.2",
"@push.rocks/smartstorage": "npm:@push.rocks/smartstorage@^6.5.1",
"@push.rocks/taskbuffer": "npm:@push.rocks/taskbuffer@^8.0.2",
"@api.global/typedrequest-interfaces": "npm:@api.global/typedrequest-interfaces@^3.0.19",
2026-05-08 15:39:02 +00:00
"@api.global/typedrequest": "npm:@api.global/typedrequest@^3.3.1",
"@api.global/typedserver": "npm:@api.global/typedserver@^8.4.6",
"@push.rocks/smartguard": "npm:@push.rocks/smartguard@^3.1.0",
2026-05-08 15:39:02 +00:00
"@push.rocks/smartjwt": "npm:@push.rocks/smartjwt@^2.2.2",
"@api.global/typedsocket": "npm:@api.global/typedsocket@^4.1.3",
"@serve.zone/containerarchive": "npm:@serve.zone/containerarchive@^0.1.3"
2025-10-28 13:05:42 +00:00
},
"compilerOptions": {
2025-11-26 18:20:02 +00:00
"lib": [
"deno.window",
"deno.ns"
],
2025-10-28 13:05:42 +00:00
"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"
]
2025-10-28 13:05:42 +00:00
}
}
}