-
Notifications
You must be signed in to change notification settings - Fork 567
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.37 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.37 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "home-assistant-matter-hub",
"description": "",
"version": "0.0.0",
"private": false,
"type": "module",
"bin": {
"home-assistant-matter-hub": "./dist/backend/cli.js"
},
"author": {
"email": "t0bst4r@outlook.com",
"name": "t0bst4r",
"url": "https://github.com/t0bst4r"
},
"keywords": [
"home-assistant",
"homeassistant",
"home",
"assistant",
"apple home",
"google home",
"apple",
"google",
"alexa",
"matter",
"matter.js",
"matterjs",
"project-chip",
"smart",
"smarthome",
"smart-home"
],
"bugs": {
"url": "https://github.com/t0bst4r/home-assistant-matter-hub/issues"
},
"license": "Apache-2.0",
"repository": "github:t0bst4r/home-assistant-matter-hub",
"scripts": {
"cleanup": "npx rimraf node_modules dist pack LICENSE README.md",
"build": "node build.js",
"bundle": "pnpm pack --out package.tgz",
"postbuild": "pnpm run bundle",
"test": "vitest run",
"prestart": "pnpm run build",
"start": "dotenvx run -f ../../.env -- ./dist/backend/cli.js start"
},
"dependencies": {
"@matter/main": "0.15.6",
"@matter/nodejs": "0.15.6",
"@matter/general": "0.15.6",
"ajv": "8.17.1",
"color": "5.0.3",
"debounce": "3.0.0",
"express": "5.2.1",
"express-basic-auth": "1.2.1",
"express-ip-access-control": "1.1.3",
"home-assistant-js-websocket": "9.6.0",
"lodash-es": "4.17.21",
"nocache": "4.0.0",
"rxjs": "7.8.2",
"strip-color": "0.1.0",
"yargs": "18.0.0",
"ws": "8.18.3"
},
"devDependencies": {
"@home-assistant-matter-hub/backend": "workspace:*",
"@home-assistant-matter-hub/frontend": "workspace:*",
"@home-assistant-matter-hub/common": "workspace:*",
"@types/lodash-es": "^4.17.12"
},
"nx": {
"targets": {
"start": {
"cache": false,
"dependsOn": [
"build"
]
},
"pack": {
"cache": true,
"dependsOn": [
"build"
],
"outputs": [
"{projectRoot}/pack"
]
},
"build": {
"inputs": [
"^default",
"default",
"{workspaceRoot}/README.md",
"{workspaceRoot}/LICENSE"
],
"outputs": [
"{projectRoot}/dist",
"{projectRoot}/README.md",
"{projectRoot}/LICENSE"
]
}
}
}
}