Pulse/package.json
2026-06-14 09:55:56 +01:00

45 lines
1.9 KiB
JSON

{
"name": "pulse",
"version": "1.0.0",
"description": "<div align=\"center\"> <img src=\"docs/images/pulse-logo.svg\" alt=\"Pulse Logo\" width=\"120\" /> <h1>Pulse</h1> <p><strong>Real-time monitoring for Proxmox, Docker, and Kubernetes infrastructure.</strong></p>",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"dev": "./scripts/hot-dev-bg.sh start --takeover",
"dev:lab": "PULSE_DEV_LAB_AGENTS=true ./scripts/hot-dev-bg.sh start --takeover",
"dev:status": "./scripts/hot-dev-bg.sh status",
"dev:status:lab": "PULSE_DEV_LAB_AGENTS=true ./scripts/hot-dev-bg.sh status",
"dev:logs": "./scripts/hot-dev-bg.sh logs",
"dev:stop": "./scripts/hot-dev-bg.sh stop",
"dev:restart": "./scripts/hot-dev-bg.sh restart --takeover",
"dev:restart:lab": "PULSE_DEV_LAB_AGENTS=true ./scripts/hot-dev-bg.sh restart --takeover",
"dev:backend-restart": "./scripts/hot-dev-bg.sh backend-restart",
"dev:verify": "./scripts/hot-dev-bg.sh verify --takeover",
"dev:verify:lab": "PULSE_DEV_LAB_AGENTS=true ./scripts/hot-dev-bg.sh verify --takeover",
"dev:foreground": "./scripts/hot-dev.sh",
"dev:foreground:lab": "PULSE_DEV_LAB_AGENTS=true ./scripts/hot-dev.sh",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky",
"mock:on": "sed -i 's/PULSE_MOCK_MODE=.*/PULSE_MOCK_MODE=true/' .env || echo 'PULSE_MOCK_MODE=true' >> .env",
"mock:off": "sed -i 's/PULSE_MOCK_MODE=.*/PULSE_MOCK_MODE=false/' .env || echo 'PULSE_MOCK_MODE=false' >> .env"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rcourtman/Pulse.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/rcourtman/Pulse/issues"
},
"homepage": "https://github.com/rcourtman/Pulse#readme",
"devDependencies": {
"@playwright/test": "1.56.1",
"husky": "^9.1.7"
}
}