-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 2.12 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
{
"name": "@illandril/foundryvtt-token-hud-scale",
"version": "3.0.0",
"description": "Illandril's Token HUD scaler: Improves the visibility of the Token, Tile, and Drawing HUDs and Status Effect icons.",
"type": "module",
"scripts": {
"clean": "rimraf dist",
"prebuild:run": "npm run clean",
"build": "npm run build:run -- --environment BUILD:production",
"build:watch": "npm run build:dev -- --watch",
"build:dev": "npm run build:run -- --environment BUILD:development",
"build:run": "rollup --config rollup.config.js",
"lint": "biome check .",
"lint:fix": "npm run lint -- --apply",
"type-check": "tsc --noEmit",
"test": "jest",
"test:coverage": "jest --coverage",
"preversion": "npm run validate",
"validate": "run-s type-check lint test:coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/illandril/FoundryVTT-token-hud-scale.git"
},
"keywords": [
"FoundryVTT"
],
"author": "Joe Spandrusyszyn",
"license": "MIT",
"bugs": {
"url": "https://github.com/illandril/FoundryVTT-token-hud-scale/issues"
},
"homepage": "https://github.com/illandril/FoundryVTT-token-hud-scale#readme",
"dependencies": {
"@illandril/foundryvtt-utils": "^10.1.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/preset-env": "^7.25.7",
"@babel/preset-typescript": "^7.24.7",
"@illandril/biome-config": "^1.4.0",
"@illandril/foundryvtt-types": "^8.1.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@types/chance": "^1.1.6",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"babel-preset-minify": "^0.5.2",
"chance": "^1.1.12",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fail-on-console": "^3.3.0",
"npm-run-all2": "^6.2.2",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-scss": "^4.0.0",
"sass": "^1.79.4",
"typescript": "^5.6.2"
}
}