forked from Koenkk/zigbee-herdsman-converters
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.35 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.35 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
{
"name": "zigbee-herdsman-converters",
"version": "25.80.0",
"description": "Collection of device converters to be used with zigbee-herdsman",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"packageManager": "pnpm@10.18.3",
"engines": {
"node": ">=20.15.0"
},
"files": [
"dist",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Koenkk/zigbee-herdsman-converters.git"
},
"keywords": [
"aqara",
"tradfri",
"hue",
"wemo",
"zigbee",
"zigbee-shepherd"
],
"scripts": {
"check": "biome check --error-on-warnings",
"check:w": "biome check --error-on-warnings --write",
"test": "vitest run --config ./test/vitest.config.mts",
"test:coverage": "vitest run --config ./test/vitest.config.mts --coverage",
"bench": "vitest bench --run --config ./test/vitest.config.mts",
"clean": "rimraf coverage dist tsconfig.tsbuildinfo models-index.json",
"build": "tsc && node dist/indexer.js",
"build:watch": "tsc-watch --onSuccess 'node dist/indexer.js'",
"prepack": "pnpm run clean && pnpm run build",
"prepare": "husky"
},
"author": "Koen Kanters",
"license": "MIT",
"bugs": {
"url": "https://github.com/Koenkk/zigbee-herdsman-converters/issues"
},
"homepage": "https://github.com/Koenkk/zigbee-herdsman-converters",
"dependencies": {
"iconv-lite": "^0.7.0",
"semver": "^7.7.3",
"zigbee-herdsman": "^7.0.0"
},
"exports": {
".": "./dist/index.js",
"./converters/*": "./dist/converters/*.js",
"./devices/*": "./dist/devices/*.js",
"./lib/*": "./dist/lib/*.js",
"./package.json": "./package.json"
},
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@types/node": "^24.10.1",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "3.2.4",
"fast-deep-equal": "^3.1.3",
"husky": "^9.1.7",
"rimraf": "^6.1.2",
"ts-morph": "^27.0.2",
"tsc-watch": "^7.2.0",
"typescript": "^5.9.3",
"vitest": "^3.1.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@serialport/bindings-cpp",
"esbuild"
]
}
}