- Detail page: base stats, type matchups (defending), evolution chain, learnset with per-move power/type/acc/PP/effect, wild locations - Game-aware: abilities gated to Gen 3+ (hidden to Gen 5+), type chart applies Gen 1 / pre-Gen 6 rules, move stats use PokeAPI past_values, pre-Gen 4 physical/special-by-type, evolution tree re-parented to the selected generation - Moves and evolution clickable/expandable; no horizontal scroll - Fix: .view-host shrink-wrapped as a grid item on desktop (margin:0 auto) - Era-accurate sprite option; Search tab relabelled as global lookup Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
29 lines
747 B
JSON
29 lines
747 B
JSON
{
|
|
"name": "pokedex-pwa",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "A responsive, offline-capable Pokédex reference PWA powered by PokéAPI.",
|
|
"scripts": {
|
|
"snapshot": "node scripts/build-snapshot.mjs",
|
|
"prebuild": "node scripts/build-snapshot.mjs",
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"vite": "^5.4.21",
|
|
"vite-plugin-pwa": "^0.21.2",
|
|
"ws": "^8.21.3"
|
|
},
|
|
"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"
|
|
}
|
|
}
|