mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-11 13:05:31 +00:00
- Added detailed reverse proxy guide for nginx, Caddy, Apache, Traefik, HAProxy, and Cloudflare Tunnel - Emphasized WebSocket requirement for v4 - Added testing instructions and troubleshooting tips - Updated README and CONFIGURATION docs to reference the new guide - Addresses user feedback from issue #244 about WebSocket requirement
37 lines
938 B
JSON
37 lines
938 B
JSON
{
|
|
"name": "pulse-modern",
|
|
"version": "1.0.0",
|
|
"description": "Modern type-safe frontend for Pulse monitoring",
|
|
"type": "module",
|
|
"author": "rcourtman",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/rcourtman/Pulse.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/rcourtman/Pulse/issues"
|
|
},
|
|
"homepage": "https://github.com/rcourtman/Pulse",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"generate-types": "cd ../scripts && go run generate-types.go",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@solidjs/router": "^0.10.0",
|
|
"solid-js": "^1.8.0",
|
|
"ws": "^8.18.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"autoprefixer": "^10.4.0",
|
|
"postcss": "^8.4.0",
|
|
"tailwindcss": "^3.4.0",
|
|
"typescript": "^5.3.0",
|
|
"vite": "^6.3.5",
|
|
"vite-plugin-solid": "^2.8.0"
|
|
}
|
|
}
|