- Replace truncated plaintext release notes with full-screen overlay rendered via `marked` library - Server reconnection does a hard page reload instead of custom event
28 lines
619 B
JSON
28 lines
619 B
JSON
{
|
|
"name": "server",
|
|
"version": "1.0.0",
|
|
"description": "High-performance FastAPI server that captures screen content and controls WLED devices for ambient lighting.",
|
|
"main": "index.js",
|
|
"directories": {
|
|
"doc": "docs",
|
|
"test": "tests"
|
|
},
|
|
"scripts": {
|
|
"build": "node esbuild.mjs",
|
|
"watch": "node esbuild.mjs --watch",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"esbuild": "^0.27.4",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"chart.js": "^4.5.1",
|
|
"elkjs": "^0.11.1",
|
|
"marked": "^17.0.5"
|
|
}
|
|
}
|