-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.64 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.64 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
{
"name": "@wfcd/profile-parser",
"version": "0.0.0",
"description": "Parser for Digital Extreme's profile data",
"repository": "https://github.com/WFCD/profile-parser",
"type": "module",
"exports": {
"./Parser": {
"types": "./dist/ProfileParser.d.mts",
"default": "./dist/ProfileParser.mjs"
},
"./Profile": {
"types": "./dist/Profile.d.mts",
"default": "./dist/Profile.mjs"
},
"./XpInfo": {
"types": "./dist/XpInfo.d.mts",
"default": "./dist/XpInfo.mjs"
},
"./Stats": {
"types": "./dist/Stats.d.mts",
"default": "./dist/Stats.mjs"
}
},
"public": true,
"files": [
"dist",
"LICENSE",
"README.md",
"types"
],
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"c8": "^11.0.0",
"chai": "^6.2.2",
"chai-json-equal": "^0.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mocha": "^11.7.5",
"tsdown": "^0.20.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"scripts": {
"build": "tsdown",
"build:docs": "tsdown && jsdoc -c .github/docs/conf.json -d docs",
"coverage": "npm test && c8 report --reporter=text-lcov | npx -y -p coveralls coveralls",
"lint": "biome check",
"lint:fix": "biome check --write",
"prepublishOnly": "npm run build",
"test": "c8 mocha",
"prepare": "husky"
},
"author": "SlayerOrnstein",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"peerDependencies": {
"@wfcd/items": "^1.1270.626",
"warframe-worldstate-data": "^3.0.0"
},
"publishConfig": {
"provenance": true
}
}