-
Notifications
You must be signed in to change notification settings - Fork 303
/
package.json
89 lines (89 loc) · 2.97 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
78
79
80
81
82
83
84
85
86
87
88
89
{
"author": {
"name": "Koen Kanters",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/koenkk/zigbee-herdsman/issues"
},
"contributors": [
{
"name": "Koen Kanters",
"email": "[email protected]"
},
{
"name": "Hedy Wang",
"email": "[email protected]"
},
{
"name": "Simen Li",
"email": "[email protected]"
},
{
"name": "Jack Wu",
"email": "[email protected]"
}
],
"dependencies": {
"@serialport/bindings-cpp": "^12.0.1",
"@serialport/parser-delimiter": "^12.0.0",
"@serialport/stream": "^12.0.0",
"bonjour-service": "^1.3.0",
"debounce": "^2.2.0",
"fast-deep-equal": "^3.1.3",
"mixin-deep": "^2.0.1",
"slip": "^1.0.2"
},
"deprecated": false,
"description": "An open source ZigBee gateway solution with node.js.",
"devDependencies": {
"@eslint/core": "^0.9.1",
"@eslint/js": "^9.17.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@serialport/binding-mock": "^10.2.2",
"@types/debounce": "^1.2.4",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typedoc": "^0.27.5",
"typedoc-plugin-markdown": "^4.3.3",
"typedoc-plugin-no-inherit": "^1.4.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vitest": "^2.1.8"
},
"homepage": "https://github.com/Koenkk/zigbee-herdsman",
"keywords": [
"zigbee",
"zstack",
"emberznet",
"deconz",
"zigate"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"name": "zigbee-herdsman",
"repository": {
"type": "git",
"url": "git+https://github.com/Koenkk/zigbee-herdsman.git"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"test": "vitest run --config ./test/vitest.config.mts",
"test:coverage": "vitest run --config ./test/vitest.config.mts --coverage",
"test:watch": "vitest watch --config ./test/vitest.config.mts",
"eslint": "eslint --max-warnings=0",
"pretty:write": "prettier --write .",
"pretty:check": "prettier --check .",
"typedoc": "typedoc --gitRevision $(git describe --tag --abbrev=0) --tsconfig tsconfig.json --excludePrivate --excludeProtected --excludeExternals --entryPointStrategy expand ./src --sourceLinkTemplate 'https://github.com/Koenkk/zigbee-herdsman/blob/{gitRevision}/{path}#L{line}' -out typedoc",
"clean": "rimraf temp coverage dist tsconfig.tsbuildinfo",
"prepack": "pnpm run clean && pnpm run build"
},
"version": "3.1.1"
}