-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.5 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@mysterycode/node-red-sacn",
"description": "Implementation of sACN (Streaming ACN) for Node-RED",
"version": "0.0.5",
"author": "MysteryCode",
"license": "GPL-3.0-only",
"private": false,
"dependencies": {
"sacn": "^4.6.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@types/node": "^22.9.0",
"@types/node-red": "^1.3.5",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"node-red": "^4.0.5",
"prettier": "^3.3.3",
"tslib": "^2.8.1",
"typescript": "^5.6.3"
},
"scripts": {
"prettier:fix": "prettier --ignore-path .eslintignore --write '**/*.{js,ts,md}'",
"lint:fix": "eslint --fix",
"build": "tsc && node build.js",
"prepack": "npm run prettier:fix && npm run lint:fix && npm run build"
},
"keywords": [
"node-red",
"sacn",
"dmx",
"lighting",
"acn",
"e1.31"
],
"node-red": {
"version": ">=4.0.0",
"nodes": {
"sacn-in": "dist/nodes/sacn-in/sacn-in.js",
"sacn-out": "dist/nodes/sacn-out/sacn-out.js",
"scene-controller": "dist/nodes/scene-controller/scene-controller.js"
}
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/MysteryCode/node-red-sacn.git"
},
"main": "dist",
"files": [
"src",
"dist",
"examples",
"resources",
"LICENSE",
"README.md"
]
}