forked from ElfFriend-DnD/foundryvtt-dnd5eCharacterActions
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"private": true,
"name": "foundryvtt-dnd5eCharacterActions",
"version": "6.1.0",
"description": "A module that provides a reusable and placable component detailing a given actor's actions.",
"authors": [
"Cameron East",
"Andrew Krigline"
],
"license": "MIT",
"scripts": {
"build": "gulp build",
"build:watch": "gulp watch",
"link-project": "gulp link",
"clean": "gulp clean",
"clean:link": "gulp link --clean",
"bump-version": "gulp bumpVersion",
"lint": "eslint --ext .ts,.js,.mjs,.cjs .",
"lint:fix": "eslint --ext .ts,.js,.mjs,.cjs --fix .",
"format": "prettier --write \"./**/*.(ts|js|json|scss)\"",
"postinstall": "husky install"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/stream": "^3.0.0",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"chalk": "^5.3.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^5.0.0",
"fs-extra": "^11.1.1",
"gulp": "^4.0.2",
"gulp-dart-sass": "^1.0.2",
"gulp-sourcemaps": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"rollup": "^2.53.2",
"semver": "^7.5.4",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"yargs": "^17.0.1"
}
}