-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@xureilab/node-red-twitch-eventsub",
"version": "0.1.1",
"description": "Connect to Twitch EventSub API",
"main": "index.js",
"homepage": "https://github.com/xurei/node-red-contrib-twitch-eventsub",
"repository": "https://github.com/xurei/node-red-contrib-twitch-eventsub",
"scripts": {
"build": "(rm -rf dist || true) && ttsc && npm run copy-static-assets",
"copy-static-assets": "node scripts/copy-static-assets.js",
"node-red-check": "node-red-dev validate",
"prepublishOnly": "npm run build"
},
"keywords": [
"node-red",
"twitch",
"stream",
"rewards",
"bits",
"cheer",
"follow",
"subscribe"
],
"author": {
"email": "xureilab@gmail.com",
"name": "xurei",
"url": "https://xureilab.com"
},
"license": "MIT",
"dependencies": {
"@twurple/api": "^7.1.0",
"@twurple/auth": "^7.1.0",
"@twurple/eventsub-ws": "^7.1.0"
},
"node-red": {
"version": ">=2.0.0",
"nodes": {
"twitch-eventsub": "dist/twitch-eventsub.js",
"twitch-eventsub-config": "dist/twitch-eventsub-config.js"
}
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"node-fetch": "^3.3.2",
"node-red-dev": "^0.1.6",
"shelljs": "^0.8.5",
"ttypescript": "^1.5.15",
"typescript": "^4.9.5"
}
}