forked from UncleSamSwiss/dm-utils
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "@iobroker/dm-utils",
"version": "0.6.11",
"description": "ioBroker Device Manager utilities for backend",
"main": "build/index.js",
"publishConfig": {
"access": "public"
},
"types": "build/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint .",
"updateCommonTs": "node tasks.js",
"prettier": "prettier -u -w examples src",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"update-packages": "ncu --upgrade",
"npm": "npm i -f"
},
"author": "UncleSamSwiss",
"license": "MIT",
"dependencies": {
"@iobroker/adapter-core": "^3.2.3"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/eslint-config": "^1.0.0",
"@types/node": "^22.10.2",
"axios": "^1.7.9",
"typescript": "^5.7.2"
},
"files": [
"LICENSE",
"README.md",
"build"
]
}