forked from mfucci/node-matter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.26 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
{
"name": "node-matter",
"version": "0.0.11",
"description": "Matter protocol for node.js",
"keywords": [
"iot",
"home automation",
"matter",
"smart device"
],
"engines": {
"_comment": "For Crypto.hkdf support",
"node": ">=16"
},
"license": "Apache-2.0",
"author": "Marco Fucci di Napoli <[email protected]> (https://www.linkedin.com/in/marco-fucci-di-napoli/)",
"bugs": {
"url": "https://github.com/mfucci/node-matter/issues"
},
"homepage": "https://github.com/mfucci/node-matter",
"repository": {
"type": "git",
"url": "https://github.com/mfucci/node-matter.git"
},
"scripts": {
"clean": "rm -rf build",
"build": "npm run clean; tsc",
"test": "TZ=utc mocha"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/bytebuffer": "^5.0.43",
"@types/elliptic": "^6.4.14",
"@types/mocha": "^9.1.1",
"mocha": "^10.0.0",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@project-chip/matter.js": "^0.1.0",
"bn.js": "^5.2.0",
"elliptic": "^6.5.4"
},
"files": [
"build/**/*"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"matter": "./build/Device.js",
"matter-controller": "./build/Controller.js"
}
}