-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.28 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
{
"name": "dim-custom-symbols",
"version": "1.0",
"description": "custom symbols for use in DIM",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=22",
"pnpm": ">=8"
},
"scripts": {
"build": "tsc && resolve-tspaths",
"install": "git submodule update --init --recursive",
"watch": "tsc --watch --assumeChangesOnlyAffectDirectDependencies --preserveWatchOutput",
"fix:eslint": "pnpm lint:eslint --fix",
"fix:prettier": "prettier --write \"**/*.{js,ts,tsx,scss,html,json}\"",
"fix:svgo": "pnpm svgo --folder ./svg --pretty --multipass",
"lint:eslint": "eslint --version && eslint src --ext .js,.ts,.tsx",
"lint:prettier": "prettier \"**/*.{js,ts,tsx,scss,html,json}\" --check",
"lintcached:eslint": "pnpm lint:eslint --cache --cache-location .eslintcache --cache-strategy content",
"lint-report": "pnpm lint:eslint --output-file eslint_report.json --format json",
"lint-report:cached": "pnpm lintcached:eslint --output-file eslint.results.json --format json",
"generate-data-main": "dotenv node built/src/main.js generate-font-glyph-enums generate-custom-glyph-enums generate-symbols",
"generate-data-sub": "tsc && resolve-tspaths && dotenv node built/src/main.js",
"generate-data": "pnpm build && pnpm generate-data-main"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.5",
"@types/opentype.js": "^1.3.8",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"dotenv-cli": "^7.4.2",
"eslint": "v8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"fs-extra": "^11.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"opentype.js": "^1.3.4",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"pretty-quick": "^4.0.0",
"resolve-tspaths": "^0.8.23",
"svgo": "^3.3.2",
"ttf2woff2": "^6.0.1",
"typescript": "^5.7.2",
"webfont": "^11.2.26"
},
"packageManager": "pnpm@9.1.1+sha512.14e915759c11f77eac07faba4d019c193ec8637229e62ec99eefb7cf3c3b75c64447882b7c485142451ee3a6b408059cdfb7b7fa0341b975f12d0f7629c71195",
"dependencies": {
"@d2api/manifest-node": "^2.0.9"
}
}