-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.03 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 2.03 KB
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
{
"name": "d2ai",
"version": "2.0.0",
"description": "additional info for Destiny 2; provided by the team @ DIM",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"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",
"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": "node built/src/generate-pretty-manifest.js",
"generate-data-main": "node built/src/main.js",
"generate-data-sub": "tsc && resolve-tspaths && node built/src/main.js",
"generate-data": "pnpm build && pnpm generate-data-main",
"prepare": "husky"
},
"devDependencies": {
"@d2api/manifest-node": "^2.0.9",
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"@types/stringify-object": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"bungie-api-ts": "^5.10.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"globals": "17",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"pretty-quick": "^4.2.2",
"resolve-tspaths": "^0.8.23",
"stringify-object": "^6.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "8"
},
"packageManager": "pnpm@10.22.0+sha512.bf049efe995b28f527fd2b41ae0474ce29186f7edcb3bf545087bd61fbbebb2bf75362d1307fda09c2d288e1e499787ac12d4fcb617a974718a6051f2eee741c"
}