-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.4 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.4 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
{
"name": "dirigera",
"version": "1.8.0",
"description": "A TypeScript client for IKEA's DIRIGERA smart home hub",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": "dist/src/bin.js",
"scripts": {
"test": "tsc --noEmit --p tsconfig.test.json",
"prepare": "husky || exit 0",
"prepublishOnly": "npm run test",
"prepack": "rm -rf dist && git stash -u && tsc",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lpgera/dirigera.git"
},
"keywords": [
"ikea",
"dirigera",
"iot",
"smarthome",
"matter",
"thread",
"typescript"
],
"author": "lpgera",
"license": "MIT",
"bugs": {
"url": "https://github.com/lpgera/dirigera/issues"
},
"homepage": "https://github.com/lpgera/dirigera#readme",
"dependencies": {
"commander": "^14.0.2",
"got": "^14.6.6",
"mdns-server": "^1.0.11",
"p-retry": "^7.1.1",
"reconnecting-websocket": "^4.4.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.8",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^24.10.1",
"@types/ws": "^8.18.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"volta": {
"node": "24.12.0"
},
"lint-staged": {
"*.{ts,md,json}": "prettier --write"
}
}