-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.25 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "iobroker.kisshome-research",
"version": "1.2.1",
"description": "Collection of information for KISSHome research",
"author": {
"name": "Denis Haev",
"email": "dogafox@gmail.com"
},
"homepage": "https://github.com/ioBroker/ioBroker.kisshome-research",
"keywords": [
"ioBroker",
"AI",
"KISSHome"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.kisshome-research"
},
"optionalDependencies": {
"@network-utils/arp-lookup": "^2.1.0"
},
"dependencies": {
"@iobroker/adapter-core": "^3.2.2",
"@network-utils/vendor-lookup": "^1.0.8",
"axios": "^1.7.7",
"network": "^0.7.0"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/build-tools": "^2.0.6",
"@iobroker/eslint-config": "^0.1.6",
"@iobroker/types": "^6.0.11",
"@iobroker/legacy-testing": "^2.0.1",
"@iobroker/testing": "^5.0.0",
"@types/node": "^22.9.0",
"chai": "^4.5.0",
"mocha": "^10.8.2",
"typescript": "~5.6.3"
},
"bugs": {
"url": "https://github.com/ioBroker/iobroker.kisshome-research/issues"
},
"main": "build/main.js",
"files": [
"admin/",
"io-package.json",
"LICENSE",
"build/"
],
"scripts": {
"test": "mocha --exit",
"prepublishOnly": "npm run build",
"lint": "eslint -c src/eslint.config.mjs src/",
"lint-frontend": "eslint -c src-admin/eslint.config.mjs src-admin/",
"build": "npm run build:ts && npm run build:gui",
"build:ts": "tsc -p src/tsconfig.build.json",
"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 && cd src-admin && ncu --upgrade",
"npm": "npm i && cd src-admin && npm i",
"dev-server": "dev-server",
"0-clean": "node tasks --0-clean",
"1-npm": "node tasks --1-npm",
"2-compile": "node tasks --2-compile",
"3-copy": "node tasks --3-copy",
"build:gui": "node tasks"
},
"license": "MIT",
"readmeFilename": "README.md"
}