@blorkfield/twitch-integration 0.1.0 → 0.2.1
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 +15 -8
package/package.json
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blorkfield/twitch-integration",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Twitch EventSub WebSocket client with normalized chat message stream",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/Blorkfield/twitch-integration.git"
|
|
8
|
+
},
|
|
9
|
+
"packageManager": "pnpm@10.27.0",
|
|
5
10
|
"type": "module",
|
|
6
11
|
"main": "./dist/index.cjs",
|
|
7
12
|
"module": "./dist/index.js",
|
|
@@ -21,6 +26,14 @@
|
|
|
21
26
|
"files": [
|
|
22
27
|
"dist"
|
|
23
28
|
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"dev": "pnpm build && pnpm -C testbed dev",
|
|
31
|
+
"build": "tsup",
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"changeset": "changeset",
|
|
34
|
+
"publish": "pnpm build && pnpm publish --access public",
|
|
35
|
+
"prepare": "[ -d testbed ] && pnpm -C testbed install || true"
|
|
36
|
+
},
|
|
24
37
|
"dependencies": {
|
|
25
38
|
"eventemitter3": "^5.0.1"
|
|
26
39
|
},
|
|
@@ -42,11 +55,5 @@
|
|
|
42
55
|
},
|
|
43
56
|
"publishConfig": {
|
|
44
57
|
"access": "public"
|
|
45
|
-
},
|
|
46
|
-
"scripts": {
|
|
47
|
-
"dev": "pnpm build && pnpm -C testbed dev",
|
|
48
|
-
"build": "tsup",
|
|
49
|
-
"typecheck": "tsc --noEmit",
|
|
50
|
-
"changeset": "changeset"
|
|
51
58
|
}
|
|
52
|
-
}
|
|
59
|
+
}
|