Contributing Guide
Everything you need to know to contribute to Stardew Wiki.
This site is built with SvelteKit and Tailwind CSS. To run it locally:
- Fork and clone the repository
- Run
npm install - Run
npm run dev - Open
http://localhost:5173
Item data lives in src/lib/data/, organized by category. Each item type has a TypeScript interface in src/lib/types/entities.ts.
To add a new item:
- Find the appropriate data directory (e.g.,
src/lib/data/cooking/) - Add your item data following the existing type interface
- Export it from the directory's
index.ts - The page will automatically pick it up