-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.13 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
{
"name": "eve-fit-engine",
"version": "0.1.8",
"description": "Pyfa-parity EVE Online ship & structure fitting calculation engine. Inject an SDE dataset + a fit, get the full derived stat block (offense, defense, capacitor, navigation, targeting, fitting, projected, structure).",
"license": "GPL-3.0-or-later",
"type": "module",
"sideEffects": false,
"keywords": [
"eve-online",
"eve",
"pyfa",
"fitting",
"dogma",
"ship-fitting",
"eft"
],
"author": "Capsuleers.app",
"homepage": "https://github.com/WilliamFalci/capsuleers.fitting-engine",
"repository": {
"type": "git",
"url": "git+https://github.com/WilliamFalci/capsuleers.fitting-engine.git"
},
"bugs": {
"url": "https://github.com/WilliamFalci/capsuleers.fitting-engine/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.js",
"require": "./dist/node.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"data",
"LICENSE",
"NOTICE",
"README.md"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"build:data": "node scripts/fetch-sde.mjs && tsx scripts/build-bundle.ts",
"diff:setup": "bash scripts/setup-pyfa-oracle.sh",
"diff": "node test/diff/run-diff.mjs",
"diff:recalibrate": "node scripts/recalibrate-pyfa-pin.mjs",
"test:pyfa": "tsx test/parity/run-pyfa-parity.ts",
"audit:coverage": "tsx test/effect-coverage-audit.ts",
"drift": "node scripts/check-pyfa-drift.mjs",
"drift:update": "node scripts/check-pyfa-drift.mjs --update",
"prepublishOnly": "npm run typecheck && npm run build"
},
"devDependencies": {
"@types/node": "^22.19.19",
"adm-zip": "^0.5.16",
"tsup": "^8.3.5",
"tsx": "^4.20.3",
"typescript": "^5.7.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
}
}