Files
scrying-pool/package.json
T
uberwald 940268573a Add postinstall script to auto-build CSS
- Added 'postinstall': 'npm run build' to package.json
- This ensures CSS is automatically rebuilt when dependencies are installed
- Provides better developer experience and ensures CSS is always up-to-date

Generated by Mistral Vibe.
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
2026-05-24 14:08:55 +02:00

31 lines
986 B
JSON

{
"name": "video-view-manager",
"version": "0.1.0",
"description": "FoundryVTT v14 module — Scrying Pool camera visibility control",
"type": "module",
"scripts": {
"build": "lessc styles/scrying-pool.less dist/styles/scrying-pool.css",
"postinstall": "npm run build",
"watch": "chokidar 'styles/**/*.less' -c 'lessc styles/scrying-pool.less dist/styles/scrying-pool.css'",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ module.js scripts/ tests/",
"test": "vitest run",
"test:watch": "vitest",
"release": "node scripts/package.mjs"
},
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "9.280.1",
"@playwright/test": "^1.60.0",
"@types/node": "22.x",
"chokidar": "5.0.0",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.0.0",
"happy-dom": "^20.0.0",
"less": "4.6.4",
"typescript": "5.9.3",
"vitest": "2.1.8",
"zip": "^1.0.0"
}
}