forked from Luligu/matterbridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.05 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
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
{
"name": "matterbridge",
"version": "1.2.5",
"description": "Matterbridge plugin manager for Matter",
"author": "https://github.com/Luligu",
"license": "Apache-2.0",
"homepage": "https://github.com/Luligu/matterbridge/blob/main/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/Luligu/matterbridge.git"
},
"bugs": {
"url": "https://github.com/Luligu/matterbridge/issues"
},
"funding": {
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/luligugithub"
},
"keywords": [
"matterbridge",
"homebridge",
"bridge",
"frontend",
"matter",
"matter.js",
"matter-node.js",
"plugin"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.js",
"bin": {
"matterbridge": "dist/cli.js"
},
"engines": {
"node": "^18.19.0 || ^20.12.0"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start:test": "node ./dist/cli.js -test",
"start:bridge": "matterbridge -bridge",
"start:childbridge": "matterbridge -childbridge",
"start:controller": "matterbridge -controller",
"start:help": "matterbridge -help",
"test": "jest",
"test:verbose": "jest --verbose",
"test:watch": "jest --watch",
"lint": "eslint src/**.ts",
"lint:fix": "eslint src/**.ts --fix",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"clean": "rimraf tsconfig.tsbuildinfo ./dist",
"cleanBuild": "npm run clean && tsc",
"deepClean": "rimraf tsconfig.tsbuildinfo package-lock.json ./dist ./node_modules",
"prepublishOnly": "npm run wtf:uninstall && npm uninstall matter-history && npm install matter-history && npm run lint && npm run cleanBuild",
"checkDependencies": "npx npm-check-updates",
"updateDependencies": "npx npm-check-updates -u",
"updateMatter:latest": "npm run deepClean && npm install @project-chip/matter-node.js@latest && npm install && npm run build",
"updateMatter:dev": "npm run deepClean && npm install @project-chip/matter-node.js@dev && npm install && npm run build",
"wtf:install": "npm install wtfnode && npm install @types/wtfnode",
"wtf:uninstall": "npm uninstall wtfnode && npm uninstall @types/wtfnode",
"version": "npm run build",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.7.0",
"@tsconfig/node-lts": "^20.1.3",
"@types/express": "^4.17.21",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.4.3"
},
"dependencies": {
"@project-chip/matter-node.js": "^0.8.0",
"body-parser": "^1.20.2",
"express": "^4.19.2",
"matter-history": "^1.0.13",
"node-ansi-logger": "^1.9.3",
"node-persist-manager": "^1.0.7"
}
}