-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "foundry-vtt-random-target",
"author": "iKindred",
"authors": [
{
"name": "iKindred",
"discord": "iKindred#8997",
"url": "https://github.com/mcavallo/"
}
],
"private": true,
"type": "module",
"license": "GPLV3",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node-fetch": "^2.6.2",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"chalk": "^4.1.2",
"eslint": "^8.23.0",
"eslint-config-jquery": "^3.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^10.1.0",
"js-yaml": "^4.1.0",
"minimist": "^1.2.6",
"node-fetch": "^2.6.7",
"prettier": "^2.7.1",
"rimraf": "^5.0.1",
"rollup": "^3.26.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-output-manifest": "^2.0.0",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-watch": "^1.0.2",
"sass": "^1.63.6"
},
"dependencies": {},
"scripts": {
"foundry:link": "node scripts/foundryLink.js",
"foundry:unlink": "node scripts/foundryUnlink.js",
"build": "rimraf --glob dist/** && rollup -c rollup.config.js",
"dev": "rimraf --glob dist/** && rollup -c rollup.config.js -w"
}
}