Files
Giancarmine SalucciandClaude Opus 4.8 630c6f36c5
Build and publish docker image / Build and push image to Gitea's registry (push) Successful in 41s
chore: fix lint — upgrade prettier plugins, format, resolve eslint errors
`npm run lint` was broken and noisy:

- prettier-plugin-svelte 3.5.2 / prettier-plugin-tailwindcss 0.6.14 crashed
  on prettier 3.8 with "getVisitorKeys is not a function". Bumped to ^4.1.1
  and ^0.8.0 (compatible with the new embed API).
- Added .prettierignore (build output, .svelte-kit, generated drizzle
  migration meta, lockfile/data) and ran prettier --write across the repo.
- Typed layout `children` as Snippet (was `any`).
- Added keys to the EXTRACTORS {#each} blocks in settings.
- Disabled svelte/no-navigation-without-resolve: the app serves from the
  domain root (no base path) and links to external URLs + raw API endpoints,
  where resolve() is unnecessary or wrong.

No runtime behaviour change.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-19 14:54:52 +02:00

63 lines
1.8 KiB
JSON

{
"name": "generic-video-dl",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test:unit": "vitest",
"test": "npm run test:unit -- --run",
"db:push": "drizzle-kit push --verbose --force",
"db:migrate": "node scripts/migrate.cjs",
"db:studio": "drizzle-kit studio",
"gen-vapid": "npx web-push generate-vapid-keys"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.0.0",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^20",
"@types/web-push": "^3.6.4",
"drizzle-kit": "^0.30.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^3.0.0",
"globals": "^16.0.0",
"jsdom": "^26.0.0",
"playwright": "^1.60.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^4.1.1",
"prettier-plugin-tailwindcss": "^0.8.0",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.22.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.20.0",
"vite": "^6.2.5",
"vitest": "^3.0.0"
},
"dependencies": {
"@mozempk/ig-auth": "^0.1.2",
"@node-rs/argon2": "^2.0.2",
"better-sqlite3": "^11.8.0",
"drizzle-orm": "^0.40.0",
"jose": "^6.0.0",
"p-limit": "^6.1.0",
"web-push": "^3.6.7"
}
}