@pkmn/mods 0.7.49 → 0.7.51

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pkmn/mods",
3
- "version": "0.7.49",
3
+ "version": "0.7.51",
4
4
  "description": "Support for non-standard mods to @pkmn/sim and @pkmn/dex",
5
5
  "repository": "github:pkmn/ps",
6
6
  "author": "Guangcong Luo <guangcongluo@gmail.com> (http://guangcongluo.com)",
@@ -57,6 +57,10 @@
57
57
  "./gen8dlc1": {
58
58
  "require": "./build/gen8dlc1/index.js",
59
59
  "import": "./build/gen8dlc1/index.mjs"
60
+ },
61
+ "./gen9predlc": {
62
+ "require": "./build/gen9predlc/index.js",
63
+ "import": "./build/gen9predlc/index.mjs"
60
64
  }
61
65
  },
62
66
  "typesVersions": {
@@ -90,6 +94,9 @@
90
94
  ],
91
95
  "gen8dlc1": [
92
96
  "./build/gen8dlc1/index.d.ts"
97
+ ],
98
+ "gen9predlc": [
99
+ "./build/gen9predlc/index.d.ts"
93
100
  ]
94
101
  }
95
102
  },
@@ -100,11 +107,11 @@
100
107
  "build"
101
108
  ],
102
109
  "dependencies": {
103
- "@pkmn/dex-types": "^0.7.49"
110
+ "@pkmn/dex-types": "^0.7.51"
104
111
  },
105
112
  "devDependencies": {
106
- "@pkmn/dex": "^0.7.49",
107
- "@pkmn/sim": "^0.7.49"
113
+ "@pkmn/dex": "^0.7.51",
114
+ "@pkmn/sim": "^0.7.51"
108
115
  },
109
116
  "scripts": {
110
117
  "lint": "eslint --cache src --ext ts",
@@ -137,7 +144,8 @@
137
144
  "./src/gen7letsgo/*.ts",
138
145
  "./src/gen7sm/*.ts",
139
146
  "./src/gen8bdsp/*.ts",
140
- "./src/gen8dlc1/*.ts"
147
+ "./src/gen8dlc1/*.ts",
148
+ "./src/gen9predlc/*.ts"
141
149
  ],
142
150
  "rules": {
143
151
  "@typescript-eslint/quotes": "off",