-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 992 Bytes
/
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
{
"name": "node-red-contrib-vts",
"version": "1.0.2",
"description": "VtubeStudio integration for Node-RED",
"repository": {
"url": "https://github.com/eslym/node-red-contrib-vts.git"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "gulp build",
"clean": "gulp clean",
"clean-build": "gulp clean-build"
},
"keywords": [
"node-red",
"vtubestudio"
],
"author": "0nepeop1e",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.7.10",
"@types/node-red": "^1.1.1",
"@types/ws": "^7.4.7",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-util": "^3.0.8",
"handlebars": "^4.7.7",
"json5": "^2.2.0",
"through2": "^4.0.2",
"typescript": "^4.4.2"
},
"dependencies": {
"serialize-error": "^8.1.0",
"ws": "^8.2.2"
},
"node-red": {
"nodes": {
"vts.plugin": "dist/vts.plugin.js",
"vts.request": "dist/vts.request.js"
}
}
}