Files
Anthias/package.json
Viktor Petersson 040094a35e chore(release): bump to 2026.06.2 (#3009)
- CalVer (YYYY.0M.MICRO); still June 2026, micro 1 -> 2
- Ships the Qt 6 video audio fix (#3001) — PulseAudio in the viewer
  container; videos were silent on pi4-64/pi5/x86/arm64 since the
  QtMultimedia migration
- Adds the arm64/Qt6 pi3-64 board and the Rock Pi 4 fleet (#2985)
- Page-load watchdog so a stalled fetch can't freeze the display
  (#3003), Sentry error tracking for the Django services (#3007)
- Redis data persisted to the mounted volume so device identity
  survives recreation (#2983); unpinner also rolls OS + supervisor
  updates (#2984)
- Streamed backup downloads (#3005), 12-hour AM/PM asset times
  (#3002), BuildKit frontend via mirror.gcr.io (#3008)

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-07 08:36:23 +02:00

43 lines
4.1 KiB
JSON

{
"name": "anthias",
"version": "2026.06.2",
"scripts": {
"_build_note": "Alpine evaluates @click expressions against a `with(scope)`-style closure at runtime. Bun's --minify-identifiers renames internal Alpine vars (and our handler names in home.ts) in ways that break that lookup — silently. Stick to whitespace+syntax minification, which trims the bundle by half without touching identifiers.",
"build:vendor": "bun build ./src/anthias_server/app/static/src/vendor.ts --outfile=./src/anthias_server/app/static/dist/js/vendor.js --target=browser --minify-whitespace --minify-syntax",
"build:home": "bun build ./src/anthias_server/app/static/src/home.ts --outfile=./src/anthias_server/app/static/dist/js/home.js --target=browser --minify-whitespace --minify-syntax",
"build:splash": "bun build ./src/anthias_server/app/static/src/splash.ts --outfile=./src/anthias_server/app/static/dist/js/splash.js --target=browser --minify-whitespace --minify-syntax",
"build:css:tailwind": "bunx @tailwindcss/cli -i src/anthias_server/app/static/src/tailwind.css -o src/anthias_server/app/static/dist/css/tailwind.css --minify",
"build:css:components": "bunx sass src/anthias_server/app/static/sass/anthias.scss src/anthias_server/app/static/dist/css/anthias.css --load-path=node_modules --style=compressed --quiet-deps --silence-deprecation=import,global-builtin,color-functions,if-function",
"build:css": "bun run build:css:tailwind && bun run build:css:components",
"build:fonts": "mkdir -p src/anthias_server/app/static/dist/fonts src/anthias_server/app/static/dist/css/fonts && cp node_modules/@fontsource/plus-jakarta-sans/files/plus-jakarta-sans-latin-400-normal.woff2 node_modules/@fontsource/plus-jakarta-sans/files/plus-jakarta-sans-latin-700-normal.woff2 src/anthias_server/app/static/dist/fonts/ && cp node_modules/@tabler/icons-webfont/dist/tabler-icons.css src/anthias_server/app/static/dist/css/tabler-icons.css && cp node_modules/@tabler/icons-webfont/dist/fonts/tabler-icons.woff2 node_modules/@tabler/icons-webfont/dist/fonts/tabler-icons.woff node_modules/@tabler/icons-webfont/dist/fonts/tabler-icons.ttf src/anthias_server/app/static/dist/css/fonts/",
"build": "bun run build:vendor && bun run build:home && bun run build:splash && bun run build:css && bun run build:fonts",
"dev:vendor": "bun build ./src/anthias_server/app/static/src/vendor.ts --outfile=./src/anthias_server/app/static/dist/js/vendor.js --target=browser --sourcemap=linked --watch",
"dev:home": "bun build ./src/anthias_server/app/static/src/home.ts --outfile=./src/anthias_server/app/static/dist/js/home.js --target=browser --sourcemap=linked --watch",
"dev:splash": "bun build ./src/anthias_server/app/static/src/splash.ts --outfile=./src/anthias_server/app/static/dist/js/splash.js --target=browser --sourcemap=linked --watch",
"dev:css:tailwind": "bunx @tailwindcss/cli -i src/anthias_server/app/static/src/tailwind.css -o src/anthias_server/app/static/dist/css/tailwind.css --watch",
"dev:css:components": "bunx sass src/anthias_server/app/static/sass/anthias.scss src/anthias_server/app/static/dist/css/anthias.css --load-path=node_modules --watch --quiet-deps --silence-deprecation=import,global-builtin,color-functions,if-function",
"dev": "bash -c 'bun run dev:vendor & v=$!; bun run dev:home & h=$!; bun run dev:splash & sp=$!; bun run dev:css:tailwind & tw=$!; bun run dev:css:components & css=$!; trap \"kill $v $h $sp $tw $css 2>/dev/null\" EXIT INT TERM; wait -n; exit $?'",
"lint:check": "echo 'no-op: TS lint not configured for the htmx/alpine entrypoint'",
"lint:fix": "echo 'no-op'",
"format:check": "echo 'no-op'",
"format:fix": "echo 'no-op'",
"test": "echo 'no-op: TS tests removed with the React stack'"
},
"dependencies": {
"@fontsource/plus-jakarta-sans": "^5.2.8",
"@tabler/icons-webfont": "^3.44.0",
"alpinejs": "^3.15.12",
"flatpickr": "^4.6.13",
"htmx.org": "^2.0.10",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@tailwindcss/cli": "^4.3.0",
"@tailwindcss/forms": "^0.5.11",
"@types/qrcode": "^1.5.6",
"sass": "^1.100.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3"
}
}