Initial commit

This commit is contained in:
Oliver 2024-08-28 21:23:31 -06:00 committed by GitHub
commit 60b0072bcc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
47 changed files with 6462 additions and 0 deletions

17
package.json Normal file
View file

@ -0,0 +1,17 @@
{
"devDependencies": {
"@eslint/js": "^9.8.0",
"@foundryvtt/foundryvtt-cli": "^1.0.3",
"@league-of-foundry-developers/foundry-vtt-types": "^9.280.0",
"@stylistic/eslint-plugin": "^2.6.1",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"sass": "^1.77.8"
},
"scripts": {
"css": "sass --watch --embed-source-map --no-error-css styles/:.styles/",
"build": "sass --embed-source-map --no-error-css styles/:.styles/",
"lint": "eslint --fix",
"lint:nofix": "eslint"
}
}