Move the scripts into a submodule repo

This commit is contained in:
Oliver 2026-01-13 17:27:29 -07:00
parent 23fe6d10f5
commit 3b2d886f58
4 changed files with 133 additions and 2004 deletions

View file

@ -1,18 +1,16 @@
{
"devDependencies": {
"@aws-sdk/client-s3": "^3.934.0",
"@eslint/js": "^9.8.0",
"@foundryvtt/foundryvtt-cli": "^1.0.3",
"@stylistic/eslint-plugin": "^2.6.1",
"axios": "^1.13.2",
"dotenv": "^17.2.2",
"eslint": "^9.8.0",
"globals": "^15.9.0"
"globals": "^15.9.0",
"scripts": "file:./scripts"
},
"scripts": {
"data:build": "node scripts/buildCompendia.mjs",
"data:extract": "node scripts/extractCompendia.mjs",
"link": "node scripts/linkFoundry.mjs",
"data:build": "node scripts/src/buildCompendia.mjs",
"data:extract": "node scripts/src/extractCompendia.mjs",
"link": "node scripts/src/linkFoundry.mjs",
"lint": "eslint --fix",
"lint:nofix": "eslint"
}