-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.58 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
73
74
75
76
77
{
"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.8.1",
"@league-of-foundry-developers/foundry-vtt-types": "^9.280.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.3",
"@types/fancy-log": "^2.0.0",
"@types/glob": "^8.0.0",
"@types/gulp": "^4.0.8",
"@types/gulp-dart-sass": "^1.0.0",
"@types/gulp-zip": "^4.0.1",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"ajv": "^8.11.0",
"ajv-cli": "^5.0.0",
"chai": "^4.3.6",
"del": "^7.0.0",
"esbuild": "^0.15.12",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"fancy-log": "^2.0.0",
"glob": "^8.0.3",
"glob-promise": "^5.0.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": "^13.0.3",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"stylelint": "^14.14.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^6.0.0",
"ts-json-schema-generator": "^1.1.2",
"ts-node": "^10.9.1",
"tsd": "^0.20.0",
"typescript": "~4.7",
"zod": "^3.19.1"
},
"scripts": {
"lint": "eslint --ext .d.ts,.ts,.test-d.ts,.cjs . && prettier --check ./src/main/compendiums/**/*.json ./src/main/lang/*.json && stylelint ./src/main/sass/**/*.sass",
"lint-fix": "eslint --ext .d.ts,.ts,.test-d.ts,.cjs . --fix && 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"
}
}