warframe-worldstate-data 2.20.0 → 2.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18953,5 +18953,8 @@
18953
18953
  },
18954
18954
  "/Lotus/StoreItems/Types/StoreItems/AvatarImages/Seasonal/AvatarImageCNY2025SnakeGlyphA": {
18955
18955
  "value": "Giving Snake Glyph"
18956
+ },
18957
+ "/Lotus/StoreItems/Powersuits/Trapper/TrapperPrime": {
18958
+ "value": "Vauban Prime"
18956
18959
  }
18957
18960
  }
@@ -18953,5 +18953,8 @@
18953
18953
  },
18954
18954
  "/Lotus/StoreItems/Types/StoreItems/AvatarImages/Seasonal/AvatarImageCNY2025SnakeGlyphA": {
18955
18955
  "value": "Giving Snake Glyph"
18956
+ },
18957
+ "/Lotus/StoreItems/Powersuits/Trapper/TrapperPrime": {
18958
+ "value": "Vauban Prime"
18956
18959
  }
18957
18960
  }
@@ -18953,5 +18953,8 @@
18953
18953
  },
18954
18954
  "/Lotus/StoreItems/Types/StoreItems/AvatarImages/Seasonal/AvatarImageCNY2025SnakeGlyphA": {
18955
18955
  "value": "Giving Snake Glyph"
18956
+ },
18957
+ "/Lotus/StoreItems/Powersuits/Trapper/TrapperPrime": {
18958
+ "value": "Вобан Прайм"
18956
18959
  }
18957
18960
  }
@@ -2228,5 +2228,10 @@
2228
2228
  "value": "Brutus (Uranus)",
2229
2229
  "enemy": "Corpus",
2230
2230
  "type": "Ascension"
2231
+ },
2232
+ "SolarisUnitedHub1": {
2233
+ "value": "Fortuna (Venus)",
2234
+ "enemy": "Corpus",
2235
+ "type": "Relay"
2231
2236
  }
2232
- }
2237
+ }
@@ -18953,5 +18953,8 @@
18953
18953
  },
18954
18954
  "/Lotus/StoreItems/Types/StoreItems/AvatarImages/Seasonal/AvatarImageCNY2025SnakeGlyphA": {
18955
18955
  "value": "Giving Snake Glyph"
18956
+ },
18957
+ "/Lotus/StoreItems/Powersuits/Trapper/TrapperPrime": {
18958
+ "value": "Vauban Prime"
18956
18959
  }
18957
18960
  }
@@ -18953,5 +18953,8 @@
18953
18953
  },
18954
18954
  "/Lotus/StoreItems/Types/StoreItems/AvatarImages/Seasonal/AvatarImageCNY2025SnakeGlyphA": {
18955
18955
  "value": "Giving Snake Glyph"
18956
+ },
18957
+ "/Lotus/StoreItems/Powersuits/Trapper/TrapperPrime": {
18958
+ "value": "Vauban Prime"
18956
18959
  }
18957
18960
  }
@@ -18953,5 +18953,8 @@
18953
18953
  },
18954
18954
  "/Lotus/StoreItems/Types/StoreItems/AvatarImages/Seasonal/AvatarImageCNY2025SnakeGlyphA": {
18955
18955
  "value": "Гліф «Щедра змія»"
18956
+ },
18957
+ "/Lotus/StoreItems/Powersuits/Trapper/TrapperPrime": {
18958
+ "value": "Вобан-прайм"
18956
18959
  }
18957
18960
  }
@@ -18953,5 +18953,8 @@
18953
18953
  },
18954
18954
  "/Lotus/StoreItems/Types/StoreItems/AvatarImages/Seasonal/AvatarImageCNY2025SnakeGlyphA": {
18955
18955
  "value": "Giving Snake Glyph"
18956
+ },
18957
+ "/Lotus/StoreItems/Powersuits/Trapper/TrapperPrime": {
18958
+ "value": "Vauban Prime"
18956
18959
  }
18957
18960
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "warframe-worldstate-data",
3
- "version": "2.20.0",
3
+ "version": "2.21.0",
4
4
  "description": "Warframe data for use with warframe-worldstate-parser",
5
5
  "keywords": [
6
6
  "warframe-worldstate",
@@ -51,75 +51,11 @@
51
51
  "lint": "eslint --ignore-path .gitignore .",
52
52
  "lint:fix": "eslint --ignore-path .gitignore . --fix",
53
53
  "prepare": "husky && npx install-peerdeps @wfcd/eslint-config@latest -S",
54
- "sort": "node tools/sort_languages.py",
54
+ "sort": "./tools/sortLanguages.js",
55
55
  "test": "c8 mocha",
56
56
  "validate": "npm run lint:fix && npm run test && git add -u ."
57
57
  },
58
- "commitlint": {
59
- "extends": [
60
- "@commitlint/config-conventional"
61
- ],
62
- "rules": {
63
- "body-max-line-length": [
64
- 0
65
- ]
66
- }
67
- },
68
- "lint-staged": {
69
- "*.js": [
70
- "eslint --cache --fix",
71
- "npm test"
72
- ],
73
- "package*.json": [
74
- "npx sort-package-json",
75
- "npm dedupe"
76
- ],
77
- "*.{yml,json,yaml},!package*.json": [
78
- "prettier --write"
79
- ]
80
- },
81
- "babel": {
82
- "plugins": [
83
- "@babel/plugin-transform-class-properties",
84
- "@babel/plugin-transform-private-methods"
85
- ],
86
- "presets": [
87
- "@babel/preset-env"
88
- ]
89
- },
90
58
  "prettier": "@wfcd/eslint-config/prettier",
91
- "eslintConfig": {
92
- "parser": "@babel/eslint-parser",
93
- "parserOptions": {
94
- "ecmaFeatures": {
95
- "modules": true
96
- },
97
- "ecmaVersion": 6,
98
- "sourceType": "module"
99
- },
100
- "extends": "@wfcd/eslint-config/esm"
101
- },
102
- "eslintIgnore": [
103
- ".github/**",
104
- "docs/**",
105
- "data/**"
106
- ],
107
- "release": {
108
- "branch": "master"
109
- },
110
- "mocha": {
111
- "spec": "test/**/*.spec.js"
112
- },
113
- "c8": {
114
- "exclude": [
115
- "test/**"
116
- ],
117
- "reporter": [
118
- "lcov",
119
- "text"
120
- ],
121
- "skip-full": true
122
- },
123
59
  "devDependencies": {
124
60
  "@commitlint/cli": "^19.2.1",
125
61
  "@commitlint/config-conventional": "^19.1.0",
@@ -135,7 +71,8 @@
135
71
  "mocha": "^11.0.1",
136
72
  "prettier": "^3.2.5",
137
73
  "sinon": "^19.0.2",
138
- "sinon-chai": "^4.0.0"
74
+ "sinon-chai": "^4.0.0",
75
+ "yargs": "^17.7.2"
139
76
  },
140
77
  "engines": {
141
78
  "node": ">=18.19.0"