-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
88 lines (88 loc) · 2.29 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
{
"name": "@zwave-js/server",
"version": "1.40.2",
"description": "Full access to zwave-js driver through Websockets",
"homepage": "https://github.com/zwave-js/zwave-js-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zwave-js/zwave-js-server.git"
},
"bugs": {
"url": "https://github.com/zwave-js/zwave-js-server/issues"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"module": "dist-esm/lib/index.js",
"main": "dist-cjs/lib/index.js",
"types": "dist-cjs/lib/index.d.ts",
"bin": {
"zwave-server": "dist-esm/bin/server.js",
"zwave-client": "dist-esm/bin/client.js"
},
"exports": {
".": {
"import": "./dist-esm/lib/index.js",
"require": "./dist-cjs/lib/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist-esm",
"dist-cjs"
],
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix && prettier -w .",
"test": "prettier --check src && tsc --noEmit && npm run lint && tsx src/test/integration.ts",
"build": "tsc -p .",
"postbuild": "esm2cjs --in dist-esm --out dist-cjs -l error -t node18",
"prepare": "npm run build",
"prepublishOnly": "rm -rf dist-* && npm run build"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@homebridge/ciao": "^1.1.7",
"minimist": "^1.2.8",
"ws": "^8.18.0"
},
"peerDependencies": {
"zwave-js": "^14.0.0"
},
"devDependencies": {
"@alcalzone/esm2cjs": "^1.4.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@tsconfig/node18": "^18.2.1",
"@types/minimist": "^1.2.2",
"@types/node": "^22.5.0",
"@types/triple-beam": "^1.3.2",
"@types/ws": "^8.5.13",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"alcalzone-shared": "^5.0.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"husky": "^4.3.8",
"lint-staged": "^15.0.2",
"prettier": "^3.0.0",
"semver": "^7.5.4",
"tsx": "^4.19.2",
"typescript": "^5.3.3",
"zwave-js": "^14.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,css,md}": [
"prettier --write"
]
}
}