@blizzard-api/wow 0.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.cjs ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ // src/index.ts
4
+ console.log("coool???");
5
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["console.log('coool???');\r\n"],"mappings":";;;AAAA,QAAQ,IAAI,UAAU;","names":[]}
@@ -0,0 +1,2 @@
1
+
2
+ export { }
@@ -0,0 +1,2 @@
1
+
2
+ export { }
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ // src/index.ts
2
+ console.log("coool???");
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["console.log('coool???');\r\n"],"mappings":";AAAA,QAAQ,IAAI,UAAU;","names":[]}
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@blizzard-api/wow",
3
+ "version": "0.0.0",
4
+ "license": "MIT",
5
+ "author": "Putro",
6
+ "description": "A series of helpers to interact with the World of Warcraft Blizzard API",
7
+ "repository": "https://github.com/Pewtro/blizzard/packages/wow",
8
+ "type": "module",
9
+ "engines": {
10
+ "node": ">=18 <19 || >=20"
11
+ },
12
+ "main": "./dist/index.js",
13
+ "exports": {
14
+ "import": {
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.js"
17
+ },
18
+ "require": {
19
+ "types": "./dist/index.d.cts",
20
+ "default": "./dist/index.cjs"
21
+ }
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "keywords": [
27
+ "blizzard",
28
+ "battlenet",
29
+ "battle.net",
30
+ "bnet",
31
+ "api",
32
+ "world of warcraft",
33
+ "warcraft",
34
+ "wow",
35
+ "classic",
36
+ "retail",
37
+ "starcraft",
38
+ "sc2",
39
+ "diablo",
40
+ "d3",
41
+ "hs",
42
+ "hearthstone",
43
+ "ow",
44
+ "overwatch"
45
+ ],
46
+ "dependencies": {},
47
+ "devDependencies": {},
48
+ "scripts": {
49
+ "build": "tsup",
50
+ "debv": "tsup --watch",
51
+ "test": "vitest run",
52
+ "test:coverage": "pnpm test -- --coverage",
53
+ "test:watch": "vitest watch"
54
+ }
55
+ }