@blizzard-api/wow 1.2.2 → 2.0.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.
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/package.json +5 -9
- package/dist/index.cjs +0 -1674
- package/dist/index.cjs.map +0 -1
- package/dist/index.d.cts +0 -4600
package/package.json
CHANGED
|
@@ -1,25 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blizzard-api/wow",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Putro",
|
|
6
6
|
"description": "A series of helpers to interact with the World of Warcraft Blizzard API",
|
|
7
7
|
"repository": "https://github.com/Pewtro/blizzard-api/tree/main/packages/wow",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"engines": {
|
|
10
|
-
"node": "^18.18 ||
|
|
10
|
+
"node": "^18.18 || >=20.9"
|
|
11
11
|
},
|
|
12
|
-
"main": "./dist/index.cjs",
|
|
13
12
|
"module": "./dist/index.js",
|
|
14
13
|
"types": "./dist/index.d.ts",
|
|
15
14
|
"exports": {
|
|
16
15
|
"import": {
|
|
16
|
+
"@blizzard-api/wow-local": "./src/index.ts",
|
|
17
17
|
"types": "./dist/index.d.ts",
|
|
18
18
|
"default": "./dist/index.js"
|
|
19
|
-
},
|
|
20
|
-
"require": {
|
|
21
|
-
"types": "./dist/index.d.cts",
|
|
22
|
-
"default": "./dist/index.cjs"
|
|
23
19
|
}
|
|
24
20
|
},
|
|
25
21
|
"files": [
|
|
@@ -38,10 +34,10 @@
|
|
|
38
34
|
],
|
|
39
35
|
"dependencies": {},
|
|
40
36
|
"peerDependencies": {
|
|
41
|
-
"@blizzard-api/core": "
|
|
37
|
+
"@blizzard-api/core": "2.0.0"
|
|
42
38
|
},
|
|
43
39
|
"devDependencies": {
|
|
44
|
-
"@blizzard-api/core": "
|
|
40
|
+
"@blizzard-api/core": "2.0.0"
|
|
45
41
|
},
|
|
46
42
|
"scripts": {
|
|
47
43
|
"build": "tsup",
|