- Complete Deno-based architecture following nupst/spark patterns - SQLite database with full schema - Docker container management - Service orchestration (Docker + Nginx + DNS + SSL) - Registry authentication - Nginx reverse proxy configuration - Cloudflare DNS integration - Let's Encrypt SSL automation - Background daemon with metrics collection - HTTP API server - Comprehensive CLI - Cross-platform compilation setup - NPM distribution wrapper - Shell installer script Core features: - Deploy containers with single command - Automatic domain configuration - Automatic SSL certificates - Multi-registry support - Metrics and logging - Systemd integration Ready for Angular UI implementation and testing.
53 lines
1012 B
JSON
53 lines
1012 B
JSON
{
|
|
"name": "@serve.zone/onebox",
|
|
"version": "1.0.0",
|
|
"description": "Self-hosted container platform with automatic SSL and DNS - a mini Heroku for single servers",
|
|
"main": "mod.ts",
|
|
"type": "module",
|
|
"bin": {
|
|
"onebox": "./bin/onebox-wrapper.js"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "node scripts/install-binary.js"
|
|
},
|
|
"keywords": [
|
|
"docker",
|
|
"containers",
|
|
"nginx",
|
|
"ssl",
|
|
"acme",
|
|
"letsencrypt",
|
|
"cloudflare",
|
|
"dns",
|
|
"heroku",
|
|
"paas",
|
|
"deployment"
|
|
],
|
|
"author": "Lossless GmbH",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://code.foss.global/serve.zone/onebox"
|
|
},
|
|
"homepage": "https://code.foss.global/serve.zone/onebox",
|
|
"bugs": {
|
|
"url": "https://code.foss.global/serve.zone/onebox/issues"
|
|
},
|
|
"files": [
|
|
"bin/",
|
|
"scripts/install-binary.js",
|
|
"readme.md",
|
|
"license",
|
|
"changelog.md"
|
|
],
|
|
"os": [
|
|
"linux",
|
|
"darwin",
|
|
"win32"
|
|
],
|
|
"cpu": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
}
|