-
Notifications
You must be signed in to change notification settings - Fork 367
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.67 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.67 KB
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
90
91
92
93
{
"author": {
"name": "Koen Kanters",
"email": "koenkanters94@gmail.com"
},
"bugs": {
"url": "https://github.com/koenkk/zigbee-herdsman/issues"
},
"packageManager": "pnpm@10.18.3",
"contributors": [
{
"name": "Koen Kanters",
"email": "koenkanters94@gmail.com"
},
{
"name": "Hedy Wang",
"email": "hedywings@gmail.com"
},
{
"name": "Simen Li",
"email": "simenkid@gmail.com"
},
{
"name": "Jack Wu",
"email": "jackchased@gmail.com"
}
],
"dependencies": {
"@date-fns/tz": "^1.4.1",
"@serialport/bindings-cpp": "^13.0.1",
"@serialport/parser-delimiter": "^13.0.0",
"@serialport/stream": "^13.0.0",
"bonjour-service": "^1.3.0",
"debounce": "^3.0.0",
"fast-deep-equal": "^3.1.3",
"slip": "^1.0.2",
"zigbee-on-host": "^0.2.4"
},
"deprecated": false,
"description": "An open source Zigbee gateway solution with node.js.",
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@serialport/binding-mock": "^10.2.2",
"@types/debounce": "^1.2.4",
"@types/node": "^24.12.0",
"@vitest/coverage-v8": "^3.1.1",
"rimraf": "^6.1.3",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"homepage": "https://github.com/Koenkk/zigbee-herdsman",
"keywords": [
"zigbee",
"zstack",
"emberznet",
"deconz",
"zigate"
],
"license": "MIT",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"name": "zigbee-herdsman",
"files": [
"./dist",
"./CHANGELOG.md"
],
"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",
"bench": "vitest bench --run --config ./test/vitest.config.mts",
"check": "biome check --error-on-warnings",
"check:w": "biome check --write",
"clean": "rimraf temp coverage dist tsconfig.tsbuildinfo",
"prepack": "pnpm run clean && pnpm run build"
},
"version": "10.0.4",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@serialport/bindings-cpp",
"esbuild"
]
}
}