mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-11 14:00:29 +00:00
a326a1a3ad
This resolves authentication issues (401/403 errors) when connecting to Proxmox Backup Server instances by using the correct colon separator (:) instead of an equals sign (=) between the token ID and secret in the Authorization header, as required by the PBS API. Also bumps version to 3.1.5.
34 lines
1.3 KiB
JSON
34 lines
1.3 KiB
JSON
{
|
|
"name": "pulse",
|
|
"version": "3.1.5",
|
|
"description": "A lightweight monitoring application for Proxmox VE.",
|
|
"main": "server/index.js",
|
|
"scripts": {
|
|
"start": "cd server && node index.js",
|
|
"dev:server": "NODE_ENV=development node -r dotenv/config --env-file=.env server/index.js",
|
|
"dev:css": "tailwindcss -c ./src/tailwind.config.js -i ./src/index.css -o ./src/public/output.css --watch",
|
|
"build:css": "tailwindcss -c ./src/tailwind.config.js -i ./src/index.css -o ./src/public/output.css",
|
|
"dev": "concurrently \"npm:dev:server\" \"npm:dev:css\"",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"proxmox",
|
|
"monitoring",
|
|
"dashboard",
|
|
"nodejs",
|
|
"vuejs"
|
|
],
|
|
"author": "Richard Courtman",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"concurrently": "^8.2.2"
|
|
},
|
|
"_comment_tailwind_v3_reason": "Using Tailwind CSS v3 (3.4.4) due to build inconsistencies observed with v4 (specifically 4.1.4). v4 resulted in incorrectly purged CSS files when built within certain Linux environments (e.g., Proxmox LXC - Debian 12 x86_64), failing to detect dynamically added classes. v3.4.4 builds correctly.",
|
|
"devDependencies": {
|
|
"autoprefixer": "^10.4.21",
|
|
"dotenv": "^16.5.0",
|
|
"postcss": "^8.5.3",
|
|
"tailwindcss": "^3.4.4"
|
|
}
|
|
}
|