-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.48 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.48 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
{
"name": "smartthings-matter-bridge",
"version": "1.0.0",
"description": "Bridge SmartThings HVAC devices to Matter/HomeKit",
"main": "dist/index.js",
"scripts": {
"build": "tsc && tsc-alias",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"smartthings",
"matter",
"homekit",
"hvac",
"thermostat"
],
"author": "",
"license": "MIT",
"dependencies": {
"@smartthings/core-sdk": "^8.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"hap-nodejs": "^1.2.0",
"node-cron": "^3.0.2",
"pino": "^10.0.0",
"pino-pretty": "^13.1.2",
"qrcode": "^1.5.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/jest": "^30.0.0",
"@types/node": "^20.5.0",
"@types/node-cron": "^3.0.7",
"@types/qrcode": "^1.5.5",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.4",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0"
}
}