forked from xdy/xdy-pf2e-workbench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.78 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.78 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"private": true,
"name": "xdy-pf2e-workbench",
"version": "2.21.1",
"description": "Random assortment of possibly useful doodads, thingumabobs and whatchamacallits for the foundry vtt pf2e system.",
"license": "./LICENSE",
"homepage": "https://github.com/xdy/xdy-pf2e-workbench",
"repository": {
"type": "git",
"url": "https://github.com/xdy/xdy-pf2e-workbench.git"
},
"bugs": {
"url": "https://github.com/xdy/xdy-pf2e-workbench/issues"
},
"contributors": [
{
"name": "Jonas Karlsson",
"email": "jk@xdy.se"
}
],
"scripts": {
"build": "npm run && webpack --mode production",
"build:dev": "npm run && webpack",
"clean": "rm -rf dist/*",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"docs": "typedoc",
"build:packs": "ts-node -r tsconfig-paths/register src/build-packs.ts"
},
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "^9.242.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/copy-webpack-plugin": "^10.1.0",
"@types/css-minimizer-webpack-plugin": "^3.2.1",
"@types/fs-extra": "^9.0.13",
"@types/jquery": "^3.5.13",
"@types/mini-css-extract-plugin": "^2.5.1",
"@types/node": "^17.0.12",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"copy-webpack-plugin": "^10.2.1",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^7.0.0-alpha.12",
"fs-extra": "^10.0.0",
"lint-staged": "^12.3.2",
"mini-css-extract-plugin": "^2.5.3",
"prettier": "^2.5.1",
"semantic-release": "^19.0.2",
"simple-progress-webpack-plugin": "^2.0.0",
"terser-webpack-plugin": "^5.3.0",
"thread-loader": "^3.0.4",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2",
"write-file-webpack-plugin": "^4.5.1",
"yargs": "^17.3.1"
},
"lint-staged": {
"*.(ts|js)": "eslint --fix",
"*.(json|scss)": "prettier --write"
}
}