forked from Wasteland-Ventures-Group/WV-VTT-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.26 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
63
64
65
66
67
68
69
70
71
72
{
"name": "wv-vtt-module",
"description": "A system that adapts Wasteland Ventures to Foundry VTT",
"author": {
"name": "Kai Moschcau",
"email": "[email protected]",
"url": "https://kmoschcau.de"
},
"contributors": [],
"bugs": "https://github.com/Wasteland-Ventures-Group/WV-VTT-module/issues",
"homepage": "https://github.com/Wasteland-Ventures-Group/WV-VTT-module",
"repository": "github:Wasteland-Ventures-Group/WV-VTT-module",
"license": "MIT",
"private": true,
"type": "module",
"devDependencies": {
"@ethaks/fvtt-quench": "^0.6.0",
"@league-of-foundry-developers/foundry-vtt-types": "^9.268.0",
"@pixi/constants": "6.2.1",
"@pixi/core": "6.2.1",
"@pixi/display": "6.2.1",
"@pixi/graphics": "6.2.1",
"@pixi/math": "6.2.1",
"@pixi/runner": "6.2.1",
"@pixi/settings": "6.2.1",
"@pixi/utils": "6.2.1",
"@types/chai": "^4.3.1",
"@types/fancy-log": "^1.3.1",
"@types/glob": "^7.1.4",
"@types/gulp": "^4.0.8",
"@types/gulp-dart-sass": "^1.0.0",
"@types/gulp-zip": "^4.0.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"ajv": "^8.11.0",
"ajv-cli": "^5.0.0",
"chai": "^4.3.6",
"del": "^6.0.0",
"esbuild": "^0.14.38",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.16",
"fancy-log": "^2.0.0",
"glob": "^7.1.7",
"glob-promise": "^4.2.0",
"gulp": "^4.0.2",
"gulp-dart-sass": "^1.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-zip": "^5.1.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"sass": "^1.51.0",
"ts-json-schema-generator": "^1.0.0",
"ts-node": "^10.7.0",
"tsd": "^0.19.1",
"typescript": "~4.6"
},
"scripts": {
"lint": "eslint --ext .d.ts,.ts,.test-d.ts,.cjs . && prettier --check ./src/main/compendiums/**/*.json ./src/main/lang/*.json",
"prepare": "husky install",
"test": "mocha && cd ./src/main/typescript && tsd",
"typecheck": "tsc --project ./src/main/typescript/tsconfig.json --noEmit"
},
"tsd": {
"directory": "../../test/typescript/tsd"
}
}