First
Some checks failed
Build All Docker Images / changes (push) Has been cancelled
Build and Push App Docker Image / build (push) Has been cancelled
Build and Push Node Docker Image / build (push) Has been cancelled
Test and Lint / test-app (push) Has been cancelled
Test and Lint / test-node (push) Has been cancelled
Test and Lint / lint-dockerfiles (push) Has been cancelled
Test and Lint / security-scan (push) Has been cancelled
Build All Docker Images / build-app (push) Has been cancelled
Build All Docker Images / build-node (push) Has been cancelled
Build All Docker Images / summary (push) Has been cancelled

This commit is contained in:
hunternick87 2025-07-03 15:50:13 -04:00
commit 4169337dd0
68 changed files with 8726 additions and 0 deletions

34
node/package.json Normal file
View file

@ -0,0 +1,34 @@
{
"name": "home-server-agent",
"version": "1.0.0",
"description": "Lightweight agent for managing game servers on home server",
"main": "dist/index.js",
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node",
"start": "node dist/index.js",
"docker:build": "docker build -t home-server-agent .",
"docker:run": "docker-compose up -d"
},
"type": "module",
"private": true,
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"winston": "^3.11.0",
"dockerode": "^4.0.2",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.0"
},
"peerDependencies": {
"typescript": "^5"
}
}