streamer-emotes 0.0.5 → 0.1.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/README.md +4 -3
- package/dist/index.d.mts +1 -0
- package/dist/index.mjs +2 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,11 +6,12 @@ A library to get Twitch, BTTV, FFZ and 7TV emotes for a given Twitch channel.
|
|
|
6
6
|
```js
|
|
7
7
|
import { getStreamerEmotes } from "streamer-emotes";
|
|
8
8
|
|
|
9
|
-
const
|
|
9
|
+
const emotes = await getStreamerEmotes("rubius", {
|
|
10
|
+
bttv: true, // Get BTTV emotes
|
|
11
|
+
ffz: true, // Get FFZ emotes
|
|
10
12
|
sevenTV: true, // Get 7TV emotes
|
|
11
13
|
twitch: { globals: false } // Get Twitch emotes but exclude global ones
|
|
12
14
|
});
|
|
13
15
|
|
|
14
|
-
console.
|
|
15
|
-
|
|
16
|
+
console.info(emotes);
|
|
16
17
|
```
|
package/dist/index.d.mts
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "streamer-emotes",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0
|
|
4
|
+
"version": "0.1.0",
|
|
5
5
|
"description": "A library to get Twitch, BTTV, FFZ and 7TV emotes for a given Twitch channel.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"streamer",
|
|
@@ -55,4 +55,4 @@
|
|
|
55
55
|
"typescript": "^5.9.3"
|
|
56
56
|
},
|
|
57
57
|
"packageManager": "pnpm@10.32.1"
|
|
58
|
-
}
|
|
58
|
+
}
|