forked from mysurvive/pf2e-thaum-vuln
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.71 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"private": true,
"name": "pf2e-thaum-vuln",
"description": "Enhancements to Foundry VTT's PF2e System for Thaumaturges",
"license": "MIT",
"homepage": "https://github.com/mysurvive/pf2e-thaum-vuln",
"repository": {
"type": "git",
"url": "https://github.com/mysurvive/pf2e-thaum-vuln"
},
"bugs": {
"url": "https://github.com/mysurvive/pf2e-thaum-vuln/issues"
},
"contributors": [
{
"name": "MySurvive"
}
],
"type": "module",
"scripts": {
"build": "gulp build",
"build:watch": "gulp watch",
"link-project": "gulp link",
"clean": "gulp clean",
"clean:link": "gulp link --clean",
"lint": "eslint --ext .js,.cjs,.mjs .",
"lint:fix": "eslint --ext .js,.cjs,.mjs --fix .",
"format": "prettier --write \"./**/*.(js|cjs|mjs|json|yml|css)\"",
"postinstall": "husky install",
"extractPacks": "node ./build/extractPacks.js",
"buildPacks": "node -e \"import('./build/buildPacks.js').then((e) => e.buildModulePacks())\""
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^14.0.0",
"@rollup/stream": "^2.0.0",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^10.1.0",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rollup": "^2.79.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"yargs": "^17.5.1",
"@foundryvtt/foundryvtt-cli": "^1.0.2"
},
"lint-staged": {
"*.(js|cjs|mjs)": "eslint --fix",
"*.(json|yml|css)": "prettier --write"
},
"dependencies": {
"electron": "^27.0.0"
}
}