-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
26 lines (26 loc) · 913 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "lancer-weapon-fx",
"type": "module",
"private": true,
"scripts": {
"build": "npm run db:pack",
"db:unpack": "node tooling/unpack-macros.mjs",
"db:pack": "node tooling/pack-macros.mjs",
"new-effect": "node tooling/create-new-effect.mjs",
"test": "npm run test:js",
"test:js": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"format:general": "prettier --write scripts lang tooling test",
"format:packs": "node tooling/prettier/prettier-packs.js",
"format": "npm run format:general && npm run format:packs",
"prepare": "husky"
},
"devDependencies": {
"@foundryvtt/foundryvtt-cli": "^1.0.2",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2"
}
}