-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.3 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@wfcd/items",
"version": "0.0.0-dev",
"description": "Get all warframe items directly from Warframe's API.",
"homepage": "https://github.com/wfcd/warframe-items#readme",
"bugs": {
"url": "https://github.com/wfcd/warframe-items/issues"
},
"repository": "https://github.com/WFCD/warframe-items",
"license": "MIT",
"author": "Kaptard",
"contributors": [
"Tobiah <tobiah@pm.me>"
],
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
},
"./utilities": {
"types": "./utilities/index.d.ts",
"import": "./utilities/index.mjs"
}
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsx ./build/build.ts",
"lint": "eslint . --ext .js,.mjs,.cjs,.ts",
"lint:fix": "eslint . --fix --ext .js,.mjs,.cjs,.ts",
"prepare": "husky",
"prepublishOnly": "npm_config_yes=true npx clean-package",
"regression": "NODE_OPTIONS='--import tsx' mocha --spec test/index.regression.spec.mjs",
"test": "NODE_OPTIONS='--import tsx' nyc mocha --exclude test/*.regression.spec.mjs",
"type-check": "tsc --noEmit",
"pretypings": "typescript-json-schema ./index.d.ts Items --out items.schema.json --noExtraProps --required --strictNullChecks",
"typings": "ajv validate -s ./items.schema.json -d ./data/json/All.json --allowUnionTypes --verbose",
"validate": "npm ls"
},
"pre-commit": [
"lint",
"validate",
"test"
],
"overrides": {
"cross-spawn": "^6.0.6",
"rimraf": "$rimraf"
},
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@eslint/js": "^10.0.1",
"@types/cheerio": "^1.0.0",
"@types/get-image-colors": "^4.0.5",
"@types/imagemin": "^8.0.5",
"@types/imagemin-jpegtran": "^5.0.4",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lzma": "^2.3.0",
"@types/node": "^25.0.3",
"@types/node-cmd": "^5.0.0",
"@types/node-fetch": "^2.6.11",
"@types/progress": "^2.0.7",
"@types/sharp": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@wfcd/patchlogs": "^2.149.26",
"@wfcd/relics": "^2.0.29",
"ajv-cli": "^5.0.0",
"chai": "^6.0.1",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"decache": "^4.6.2",
"eslint": "^10.1.0",
"expose-gc": "^1.0.0",
"get-image-colors": "^4.0.1",
"globals": "^17.4.0",
"https-proxy-agent": "^9.0.0",
"husky": "^9.1.5",
"image-downloader": "^4.3.0",
"imagemin": "^7.0.1",
"imagemin-jpegtran": "^8.0.0",
"imagemin-pngquant": "^10.0.0",
"json-diff": "^1.0.6",
"lint-staged": "^17.0.3",
"lodash.clonedeep": "^4.5.0",
"lua.vm.js": "0.0.1",
"lzma": "^2.3.2",
"mocha": "^11.0.1",
"node-cmd": "^5.0.0",
"node-fetch": "^2.6.1",
"nyc": "^18.0.0",
"prettier": "^3.3.3",
"progress": "^2.0.3",
"rimraf": "^6.1.3",
"sanitize-filename": "^1.6.4",
"sharp": "^0.35.1",
"socks5-http-client": "^1.0.4",
"tslib": "^2.7.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"typescript-json-schema": "0.67.1",
"wasmoon": "^1.16.0"
},
"peerDependencies": {
"warframe-worldstate-data": "^3.0.0"
},
"publishConfig": {
"provenance": true
}
}