-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
91 lines (91 loc) · 2.79 KB
/
package.json
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
{
"name": "warframe-items",
"version": "0.0.0-development",
"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": {
"type": "git",
"url": "https://github.com/wfcd/warframe-items.git"
},
"license": "MIT",
"author": "Kaptard",
"contributors": [
"Tobiah <[email protected]>"
],
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js",
"types": "./index.d.ts"
},
"./utilities": {
"import": "./utilities/index.mjs",
"types": "./utilities/index.d.ts"
}
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "node ./build/build.mjs",
"lint": "eslint --ignore-path .gitignore . --ext .js,.mjs,.cjs",
"lint:fix": "eslint --ignore-path .gitignore . --fix --ext .js,.mjs,.cjs",
"prepare": "husky && npx install-peerdeps @wfcd/eslint-config@latest -S",
"prepublishOnly": "npm_config_yes=true npx clean-package",
"regression": "mocha --include test/index.regression.spec.mjs --exclude test/index.spec.mjs",
"test": "nyc mocha --exclude test/*.regression.spec.mjs",
"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"
],
"prettier": "@wfcd/eslint-config/prettier",
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/imagemin": "^8.0.0",
"@types/imagemin-jpegtran": "^5.0.4",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^22.5.0",
"@types/node-fetch": "^2.6.11",
"@types/sharp": "^0.32.0",
"@wfcd/eslint-config": "^1.6.3",
"@wfcd/relics": "^2.0.15",
"ajv-cli": "^5.0.0",
"chai": "^5.1.1",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"decache": "^4.6.2",
"get-image-colors": "^4.0.1",
"https-proxy-agent": "^7.0.5",
"husky": "^9.1.5",
"image-downloader": "^4.3.0",
"imagemin": "^7.0.1",
"imagemin-jpegtran": "^7.0.0",
"imagemin-pngquant": "^10.0.0",
"lint-staged": "^15.2.9",
"lodash.clonedeep": "^4.5.0",
"lua.vm.js": "0.0.1",
"lzma": "^2.3.2",
"mocha": "^10.7.3",
"node-cmd": "^4.0.0",
"node-fetch": "^2.6.1",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"progress": "^2.0.3",
"sharp": "^0.33.5",
"socks5-http-client": "^1.0.4",
"tslib": "^2.7.0",
"typescript-json-schema": "^0.65.1",
"warframe-patchlogs": "^2.48.0"
},
"peerDependencies": {
"warframe-worldstate-data": "^2"
}
}