Files
HexaHost-Backend/package.json
TheOnlyMace 8bfc81fb12 feat: Deploy-Script für automatisches Deployment zu main
- Prüft ob auf develop Branch
- Prüft auf uncommitted changes
- Führt Build aus
- Kopiert dist/ nach main
- Committed und pusht automatisch
- Wechselt sicher zurück zu develop
2026-01-16 20:06:14 +01:00

28 lines
693 B
JSON

{
"name": "hexahost-backend",
"version": "1.0.0",
"description": "HexaHost.de Backend - Build-System für Obfuscation und Minification",
"scripts": {
"build": "node scripts/build.js",
"build:js": "node scripts/build.js --js-only",
"build:css": "node scripts/build.js --css-only",
"clean": "rm -rf dist",
"watch": "node scripts/watch.js",
"deploy": "node scripts/deploy.js"
},
"devDependencies": {
"javascript-obfuscator": "^4.1.1",
"clean-css": "^5.3.3",
"chokidar": "^3.6.0",
"chalk": "^4.1.2"
},
"keywords": [
"hexahost",
"obfuscation",
"minification",
"build"
],
"author": "HexaHost.de",
"license": "LGPL-2.1"
}