-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "dirigera",
"version": "1.3.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": [
"iot",
"smarthome",
"ikea",
"dirigera",
"typescript"
],
"author": "lpgera",
"license": "MIT",
"bugs": {
"url": "https://github.com/lpgera/dirigera/issues"
},
"homepage": "https://github.com/lpgera/dirigera#readme",
"dependencies": {
"commander": "^12.1.0",
"got": "^14.4.5",
"mdns-server": "^1.0.11",
"p-retry": "^6.2.1",
"reconnecting-websocket": "^4.4.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.10.1",
"@types/ws": "^8.5.13",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"volta": {
"node": "22.12.0"
},
"lint-staged": {
"*.{ts,md,json}": "prettier --write"
}
}