-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.22 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": "@mysterycode/node-red-example",
"description": "Template-Repository for Node-RED packages",
"version": "0.0.1",
"author": "MysteryCode",
"license": "GPL-3.0-only",
"private": true,
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@types/node": "^22.8.6",
"@types/node-red": "^1.3.5",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"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"
],
"node-red": {
"version": ">=4.0.5",
"nodes": {
}
},
"engines": {
"node": ">=22.0.0"
},
"main": "dist",
"repository": {
"type": "git",
"url": "https://github.com/MysteryCode/node-red-example.git"
},
"files": [
"src",
"dist",
"examples",
"resources",
"LICENSE",
"README.md"
]
}