Files
firefrost-website/package.json
Claude 9bb4101ffe feat: Add mobile task index with 11ty build-time data
Phase 2 of task management consolidation:

- Added _data/tasks.js - fetches tasks from Gitea API at build time
- Added tasks-index.njk - mobile-friendly task list page
- Added node-fetch dependency for API calls
- Added .gitignore for node_modules and _site

Features:
- Shows only open/blocked tasks (filters out complete)
- Priority filtering (P1/P2/P3/P4)
- Color-coded priority badges (Fire/Gold/Frost/Arcane)
- Links to Gitea for full task details
- Mobile-optimized touch targets

Access at: firefrostgaming.com/tasks-index.html

Chronicler #69
2026-04-08 14:25:00 +00:00

19 lines
419 B
JSON

{
"name": "firefrost-website",
"version": "1.0.0",
"description": "Firefrost Gaming static website built with 11ty",
"scripts": {
"build": "eleventy",
"serve": "eleventy --serve"
},
"keywords": ["firefrost", "gaming", "minecraft", "11ty"],
"author": "The Trinity",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^3.0.0"
},
"dependencies": {
"node-fetch": "^2.7.0"
}
}