This commit is contained in:
2025-11-26 18:20:02 +00:00
parent 3fbcaee56e
commit b36552aef2
2 changed files with 9 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@serve.zone/onebox",
"version": "1.0.0",
"version": "1.1.0",
"exports": "./mod.ts",
"nodeModulesDir": "auto",
"tasks": {
@@ -24,7 +24,10 @@
"@push.rocks/smarts3": "npm:@push.rocks/smarts3@^5.1.0"
},
"compilerOptions": {
"lib": ["deno.window", "deno.ns"],
"lib": [
"deno.window",
"deno.ns"
],
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
@@ -41,7 +44,9 @@
},
"lint": {
"rules": {
"tags": ["recommended"]
"tags": [
"recommended"
]
}
}
}

View File

@@ -1,6 +1,6 @@
{
"name": "@serve.zone/onebox",
"version": "1.0.0",
"version": "1.1.0",
"description": "Self-hosted container platform with automatic SSL and DNS - a mini Heroku for single servers",
"main": "mod.ts",
"type": "module",