-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.85 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
60
61
62
{
"name": "foundry-vtt-characters-filter",
"author": "iKindred",
"authors": [
{
"name": "iKindred",
"discord": "ikindred",
"url": "https://github.com/mcavallo/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/mcavallo/foundry-vtt-characters-filter"
},
"foundryModule": {
"name": "characters-filter",
"title": "Characters Filter",
"description": "Adds filtering to the list of characters in the user configuration screen.",
"compatibilityMinimum": "11",
"compatibilityVerified": "11.315"
},
"private": true,
"type": "module",
"license": "GPLV3",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@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",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-jquery": "^3.0.2",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^11.2.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"node-fetch": "^2.7.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"rollup": "^3.29.4",
"rollup-plugin-copy": "^3.5.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.4",
"sass": "^1.69.5"
},
"scripts": {
"foundry:link": "node -r dotenv/config scripts/foundryLink.js",
"foundry:unlink": "node -r dotenv/config scripts/foundryUnlink.js",
"build": "rimraf --glob dist/** && rollup --config .rollup.config.js",
"dev": "rimraf --glob dist/** && rollup --config .rollup.config.js --watch"
},
"dependencies": {
"fuzzysort": "^3.0.1"
}
}