vagabond-rpg-foundryvtt/package.json
Cal Corum 37300ccf90 Initial project setup for Vagabond RPG Foundry VTT system
- System manifest (system.json) for Foundry v13
- Project structure with module/, templates/, styles/, lang/, packs/
- Docker Compose for local Foundry development environment
- SCSS architecture with parchment theme and accessibility colors
- Base system entry point with CONFIG and Handlebars helpers
- English localization file with all game terms
- Project roadmap with 98 tasks across 11 phases

Phase 0 (Foundation) complete. Ready for Phase 1 (Data Models).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-12 14:32:15 -06:00

27 lines
941 B
JSON

{
"name": "vagabond-foundryvtt",
"version": "0.1.0",
"description": "Foundry VTT system for Vagabond RPG",
"scripts": {
"build": "sass styles/scss/vagabond.scss styles/vagabond.css --style=compressed",
"watch": "sass styles/scss/vagabond.scss styles/vagabond.css --watch --style=expanded --source-map",
"lint": "eslint module/",
"release": "npm run build && zip -r vagabond.zip system.json module/ templates/ styles/vagabond.css lang/ packs/ assets/ LICENSE README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calcorum/vagabond-rpg-foundryvtt.git"
},
"author": "Cal Corum <cal.corum@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/calcorum/vagabond-rpg-foundryvtt/issues"
},
"homepage": "https://github.com/calcorum/vagabond-rpg-foundryvtt#readme",
"devDependencies": {
"sass": "^1.69.0",
"eslint": "^8.56.0"
},
"type": "module"
}