@elizaos/plugin-twitch 2.0.3-beta.2 → 2.0.3-beta.3

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.
Files changed (2) hide show
  1. package/package.json +4 -3
  2. package/registry-entry.json +111 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-twitch",
3
- "version": "2.0.3-beta.2",
3
+ "version": "2.0.3-beta.3",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -28,6 +28,7 @@
28
28
  }
29
29
  },
30
30
  "files": [
31
+ "registry-entry.json",
31
32
  "dist",
32
33
  "auto-enable.ts"
33
34
  ],
@@ -54,7 +55,7 @@
54
55
  "@twurple/chat": "^8.0.0"
55
56
  },
56
57
  "peerDependencies": {
57
- "@elizaos/core": "2.0.3-beta.2"
58
+ "@elizaos/core": "2.0.3-beta.3"
58
59
  },
59
60
  "devDependencies": {
60
61
  "@biomejs/biome": "^2.4.14",
@@ -131,5 +132,5 @@
131
132
  }
132
133
  }
133
134
  },
134
- "gitHead": "82fe0f44215954c2417328203f5bd6510985c1fc"
135
+ "gitHead": "f54b0f4eaed317d59fa7dbcdce20f4cdb0734420"
135
136
  }
@@ -0,0 +1,111 @@
1
+ {
2
+ "id": "twitch",
3
+ "name": "Twitch",
4
+ "description": "Twitch connector for live chat, channel events, and audience interactions.",
5
+ "npmName": "@elizaos/plugin-twitch",
6
+ "version": "2.0.0-beta.0",
7
+ "source": "bundled",
8
+ "tags": [
9
+ "connector",
10
+ "streaming",
11
+ "twitch",
12
+ "chat",
13
+ "social",
14
+ "social-chat",
15
+ "messaging"
16
+ ],
17
+ "config": {
18
+ "TWITCH_CHANNEL": {
19
+ "type": "string",
20
+ "required": false,
21
+ "sensitive": false,
22
+ "label": "Channel",
23
+ "help": "Channel name",
24
+ "advanced": false
25
+ },
26
+ "TWITCH_CHANNELS": {
27
+ "type": "string",
28
+ "required": false,
29
+ "sensitive": false,
30
+ "label": "Channels",
31
+ "help": "Comma-separated room/channel list",
32
+ "advanced": false
33
+ },
34
+ "TWITCH_USERNAME": {
35
+ "type": "string",
36
+ "required": false,
37
+ "sensitive": false,
38
+ "label": "Username",
39
+ "help": "Username for authentication",
40
+ "advanced": false
41
+ },
42
+ "TWITCH_CLIENT_ID": {
43
+ "type": "string",
44
+ "required": false,
45
+ "sensitive": false,
46
+ "label": "Client Id",
47
+ "help": "Application/client ID",
48
+ "advanced": false
49
+ },
50
+ "TWITCH_ACCESS_TOKEN": {
51
+ "type": "secret",
52
+ "required": true,
53
+ "sensitive": true,
54
+ "label": "Access Token",
55
+ "help": "Access token for Twitch",
56
+ "advanced": false
57
+ },
58
+ "TWITCH_ALLOWED_ROLES": {
59
+ "type": "string",
60
+ "required": false,
61
+ "sensitive": false,
62
+ "label": "Allowed Roles",
63
+ "help": "Comma-separated allowed roles",
64
+ "advanced": false
65
+ },
66
+ "TWITCH_CLIENT_SECRET": {
67
+ "type": "secret",
68
+ "required": false,
69
+ "sensitive": true,
70
+ "label": "Client Secret",
71
+ "help": "Client secret for Twitch",
72
+ "advanced": false
73
+ },
74
+ "TWITCH_REFRESH_TOKEN": {
75
+ "type": "secret",
76
+ "required": false,
77
+ "sensitive": true,
78
+ "label": "Refresh Token",
79
+ "help": "Refresh token for Twitch",
80
+ "advanced": false
81
+ },
82
+ "TWITCH_REQUIRE_MENTION": {
83
+ "type": "boolean",
84
+ "required": false,
85
+ "sensitive": false,
86
+ "label": "Require Mention",
87
+ "help": "Only respond when mentioned",
88
+ "advanced": false
89
+ }
90
+ },
91
+ "render": {
92
+ "visible": false,
93
+ "pinTo": [],
94
+ "style": "setup-panel",
95
+ "icon": "Gamepad2",
96
+ "group": "connector",
97
+ "groupOrder": 1,
98
+ "actions": ["enable", "configure", "setup-guide"]
99
+ },
100
+ "resources": {
101
+ "setupGuideUrl": "https://docs.eliza.ai/plugin-setup-guide#twitch"
102
+ },
103
+ "dependsOn": [],
104
+ "kind": "connector",
105
+ "subtype": "messaging",
106
+ "auth": {
107
+ "kind": "token",
108
+ "credentialKeys": ["TWITCH_ACCESS_TOKEN"]
109
+ },
110
+ "channels": ["twitch"]
111
+ }