forked from DestinyItemManager/d2-additional-info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.45 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": "d2ai",
"version": "2.0.0",
"description": "additional info for Destiny 2; provided by the team @ DIM",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"scripts": {
"build": "tsc && resolve-tspaths",
"watch": "tsc --watch --assumeChangesOnlyAffectDirectDependencies --preserveWatchOutput",
"fix:eslint": "pnpm lint:eslint --fix",
"fix:prettier": "prettier --write \"**/*.{js,ts,tsx,scss,html,json}\"",
"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",
"manifest:pretty": "dotenv node built/src/generate-pretty-manifest.js",
"generate-data-main": "dotenv node built/src/main.js",
"generate-data-font": "dotenv node built/src/main.js generate-font-glyph-enums generate-symbols",
"generate-data-sub": "tsc && resolve-tspaths && dotenv node built/src/main.js",
"generate-font": "run-s build generate-data-font",
"generate-data": "run-s build generate-data-main"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@atao60/fse-cli": "^0.1.9",
"@d2api/manifest-node": "^2.0.9",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.2",
"@types/opentype.js": "^1.3.8",
"@types/stringify-object": "^4.0.5",
"@types/ttf2woff2": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"bungie-api-ts": "^5.1.0",
"cross-fetch": "^4.0.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"npm-run-all2": "^6.2.0",
"opentype.js": "^1.3.4",
"prettier": "^3.3.1",
"prettier-plugin-organize-imports": "^3.2.4",
"pretty-quick": "^4.0.0",
"resolve-tspaths": "^0.8.19",
"stringify-object": "^5.0.0",
"ttf2woff2": "^5.0.0",
"typescript": "^5.4.5",
"webfont": "^11.2.26"
},
"packageManager": "[email protected]+sha256.d713a5750e41c3660d1e090608c7f607ad00d1dd5ba9b6552b5f390bf37924e9"
}