-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.75 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 3.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "hadrons-blessing",
"version": "0.1.0",
"description": "Source-backed Darktide entity resolution and build audit CLI.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"prebuild": "npm run clean",
"build": "npm run build:types && npm run build:ts",
"build:types": "node scripts/generate-schema-types.mjs",
"build:ts": "tsc",
"clean": "rm -rf dist dist-test",
"test": "tsx --test src/**/*.test.ts",
"resolve": "node dist/cli/resolve-ground-truth.js",
"audit": "node dist/cli/audit-build-names.js",
"canonicalize": "node dist/cli/canonicalize-build.js",
"reresolve": "node dist/cli/reresolve-builds.js",
"coverage": "node dist/cli/coverage-ground-truth.js",
"inspect": "node dist/cli/inspect-ground-truth.js",
"class-side:build": "node dist/cli/build-class-side-manifest.js",
"gl-class-tree:build": "node dist/cli/build-gl-class-tree-labels.js",
"index:build": "node dist/cli/build-ground-truth-index.js",
"index:check": "node dist/cli/build-ground-truth-index.js --check",
"edges:build": "node dist/cli/extract-tree-edges.js",
"effects:build": "node dist/cli/extract-buff-effects.js",
"breeds:build": "node dist/cli/extract-breed-data.js",
"profiles:build": "node dist/cli/extract-damage-profiles.js",
"stagger:build": "node dist/cli/extract-stagger-settings.js",
"report": "node dist/cli/report-build.js",
"export:bot-weapons": "node dist/cli/export-bot-weapons.js",
"synergy": "node dist/cli/analyze-synergy.js",
"list": "node dist/cli/list-builds.js",
"score": "node dist/cli/score-build.js",
"recommend": "node dist/cli/recommend-build.js",
"diff": "node dist/cli/diff-builds.js",
"calc": "node dist/cli/calc-build.js",
"stagger": "node dist/cli/calc-build.js --mode stagger",
"cleave": "node dist/cli/calc-build.js --mode cleave",
"toughness": "node dist/cli/calc-build.js --mode toughness",
"calc:freeze": "node dist/cli/calc-build.js data/builds/ --json --freeze",
"stagger:freeze": "node dist/cli/calc-build.js --mode stagger data/builds/ --json --freeze",
"cleave:freeze": "node dist/cli/calc-build.js --mode cleave data/builds/ --json --freeze",
"toughness:freeze": "node dist/cli/calc-build.js --mode toughness data/builds/ --json --freeze",
"check": "npm run build && npm run class-side:build && npm test",
"entities:expand": "node dist/cli/expand-entity-coverage.js",
"entities:enrich": "node dist/cli/enrich-entity-names.js",
"gl:scrape": "node dist/cli/scrape-gl-catalog.js",
"gl:corpus:build": "node dist/cli/build-gl-alias-corpus.js",
"gl:aliases:build": "node dist/cli/build-gl-aliases.js",
"entities:gen-mapping": "node dist/cli/generate-weapon-name-mapping.js",
"audit:freeze": "for f in tests/fixtures/ground-truth/audits/*.audit.json; do b=$(basename \"$f\" .audit.json); node dist/cli/audit-build-names.js \"data/builds/${b}.json\" > \"$f\"; done",
"synergy:freeze": "for f in tests/fixtures/ground-truth/synergy/*.synergy.json; do b=$(basename \"$f\" .synergy.json); node dist/cli/analyze-synergy.js \"data/builds/${b}-\"*.json --json > \"$f\"; done",
"score:freeze": "node dist/cli/score-build.js data/builds/ --json --freeze"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hummat/hadrons-blessing.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/hummat/hadrons-blessing/issues"
},
"homepage": "https://github.com/hummat/hadrons-blessing#readme",
"devDependencies": {
"@types/node": "^25.5.0",
"ajv": "^8.18.0",
"json-schema-to-typescript": "^15.0.4",
"playwright": "^1.58.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}