-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "foundryvtt-simple-calendar",
"description": "A simple calendar module for keeping track of game days and events.",
"version": "2.4.18",
"author": "Dean Vigoren (vigorator)",
"keywords": [
"foundryvtt",
"foundry-vtt",
"module",
"calendar"
],
"repository": {
"type": "git",
"url": "https://github.com/vigoren/foundryvtt-simple-calendar"
},
"license": "MIT",
"engines": {
"node": ">18.0.0 <21.0.0"
},
"types": "types/index.d.ts",
"scripts": {
"build": "webpack",
"test": "jest",
"unusedI18N": "i18n-unused display-unused",
"writedocs": "cd simple-calendar-docs && npm install && npm run build"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@league-of-foundry-developers/foundry-vtt-types": "^9.280.0",
"@types/file-saver": "^2.0.7",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"circular-dependency-plugin": "^5.2.2",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"i18n-unused": "^0.16.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-transform-stub": "^2.0.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"mangle-css-class-webpack-plugin": "^5.1.0",
"mini-css-extract-plugin": "^2.9.0",
"prettier": "^3.2.5",
"sass": "^1.77.2",
"sass-loader": "^14.2.1",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-remove-empty-scripts": "^1.0.4"
},
"dependencies": {
"file-saver": "^2.0.5"
}
}