-
Notifications
You must be signed in to change notification settings - Fork 3.1k
/
package.json
74 lines (74 loc) · 2.27 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
{
"name": "zigbee-herdsman-converters",
"version": "21.8.0",
"description": "Collection of device converters to be used with zigbee-herdsman",
"main": "index.js",
"types": "index.d.ts",
"files": [
"/index.js",
"/index.js.map",
"/index.d.ts",
"/index.d.ts.map",
"/converters",
"/lib",
"/devices",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Koenkk/zigbee-herdsman-converters.git"
},
"keywords": [
"aqara",
"tradfri",
"hue",
"wemo",
"zigbee",
"zigbee-shepherd"
],
"scripts": {
"eslint": "eslint --max-warnings=0",
"pretty:write": "prettier --write .",
"pretty:check": "prettier --check .",
"test": "vitest run --config ./test/vitest.config.mts",
"test:coverage": "vitest run --config ./test/vitest.config.mts",
"test:watch": "vitest watch --config ./test/vitest.config.mts",
"clean": "rimraf --glob index* devices lib converters tsconfig.tsbuildinfo",
"build": "tsc",
"build-watch": "tsc --watch",
"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": {
"buffer-crc32": "^1.0.0",
"iconv-lite": "^0.6.3",
"semver": "^7.6.3",
"zigbee-herdsman": "^3.0.4"
},
"devDependencies": {
"@eslint/core": "^0.9.1",
"@eslint/js": "^9.17.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/buffer-crc32": "^0.2.4",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.2",
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "2.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"fast-deep-equal": "^3.1.3",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-morph": "^24.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vitest": "^2.1.8"
}
}