Files
Anthias/package.json
Viktor Petersson 03ae4eb187 chore(release): bump to 2026.06.3 (#3037)
- CalVer (YYYY.0M.MICRO); still June 2026, micro 2 -> 3
- Gives Sentry a real release boundary: every build since 2026.6.2
  reported the same base version (only the +git-hash differed), so
  resolved-in-next-release never stuck and fixed issues kept
  reopening on the next event. A version bump lets the deployed
  fixes actually clear from the board.
- Ships the crash/noise fixes merged since 2026.6.2: SQLite WAL +
  busy timeout (#3015), celery migration-gate (#3016) and
  asset-probe soft limits (#3017), transient-redis/CancelledError
  Sentry filtering + redis healthcheck (#3018/#3028), GitHub
  update-check log level (#3019), webview respawn on D-Bus death at
  setup and mid-play (#3020/#3031), resilient static-file scan
  (#3026), Wayland-socket wait (#3030), and Sentry release/board
  triage tags (#3021/#3025)

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

43 lines
4.1 KiB
JSON

{
"name": "anthias",
"version": "2026.06.3",
"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"
}
}