dex/package.json
chris dfd848d506 Add Prettier (config + scripts), not yet applied
printWidth 100 to stay close to the existing hand-formatting; single
quotes; trailing commas. `npm run format` / `npm run format:check`.
The formatting pass itself is the next commit so it stays isolated.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_017Ve7HLspzeG2xDPtJQ8vmu
2026-09-10 11:22:46 -04:00

34 lines
902 B
JSON

{
"name": "pocketdex",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "An offline-first Pokédex, team builder and save-file tracker powered by PokéAPI. Vanilla JS + Vite + Workbox.",
"scripts": {
"snapshot": "node scripts/build-snapshot.mjs",
"prebuild": "node scripts/build-snapshot.mjs",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"devDependencies": {
"prettier": "3.9.6",
"vite": "^6.4.3",
"vite-plugin-pwa": "^1.3.0"
},
"dependencies": {
"workbox-cacheable-response": "^7.4.1",
"workbox-expiration": "^7.4.1",
"workbox-precaching": "^7.4.1",
"workbox-routing": "^7.4.1",
"workbox-strategies": "^7.4.1",
"workbox-window": "^7.4.1"
}
}