-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.31 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.31 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "warframe-worldstate-parser",
"version": "0.0.0-dev",
"description": "An Open parser for Warframe's Worldstate in Javascript",
"keywords": [
"warframe-worldstate",
"warframe"
],
"homepage": "https://github.com/wfcd/warframe-worldstate-parser#readme",
"bugs": {
"url": "https://github.com/wfcd/warframe-worldstate-parser/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WFCD/warframe-worldstate-parser.git"
},
"license": "MIT",
"author": "aliasfalse",
"contributors": [
"nspacestd (https://github.com/nspacestd)"
],
"type": "module",
"exports": {
".": {
"types": "./dist/main.d.mts",
"import": "./dist/main.mjs"
}
},
"main": "./dist/main.mjs",
"types": "./dist/main.d.mts",
"directories": {
"test": "test"
},
"files": [
"dist/",
"LICENSE"
],
"scripts": {
"build": "tsdown",
"build:docs": "typedoc",
"lint": "biome check",
"lint:fix": "biome check --write",
"prepare": "husky",
"prepublishOnly": "npm run build && npm_config_yes=true npx clean-package",
"printcov": "c8 report",
"pretest": "npm run build",
"test": "mocha",
"test:coverage": "c8 npm test",
"test:integration": "npm run test -- -g 'should parse live pc worldstate data'"
},
"overrides": {
"sinon-chai": {
"chai": "^6.2.2"
}
},
"dependencies": {
"@nestjs/swagger": "^11.2.6",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@commitlint/types": "^20.2.0",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.2",
"@types/sinon-chai": "^4.0.0",
"c8": "^11.0.0",
"chai": "^6.2.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mocha": "^11.7.5",
"mocha-minimalist-reporter": "^1.1.0",
"prettier": "^3.7.4",
"sinon": "^21.0.1",
"sinon-chai": "^4.0.1",
"tsdown": "^0.21.0",
"tsx": "^4.21.0",
"typedoc": "^0.28.15",
"typescript": "^6.0.2"
},
"peerDependencies": {
"warframe-worldstate-data": ">=3.1.19"
},
"engines": {
"node": ">=20.10.0"
},
"publishConfig": {
"provenance": true
}
}