-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 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
{
"name": "mb-service",
"displayName": "Matterbridge Service Command",
"version": "0.7.0",
"description": "A service management command-line utility for Matterbridge, inspired by Homebridge's 'hb-service'.",
"keywords": [
"matter",
"matterbridge"
],
"homepage": "https://github.com/michaelahern/mb-service",
"bugs": {
"url": "http://github.com/michaelahern/mb-service/issues"
},
"license": "ISC",
"author": "Michael Ahern <michael.ahern@gmail.com>",
"files": [
"./bin"
],
"type": "module",
"main": "./bin/mb-service.js",
"types": "./bin/mb-service.d.ts",
"bin": {
"mb-service": "bin/mb-service.js"
},
"repository": {
"type": "git",
"url": "git://github.com/michaelahern/mb-service.git"
},
"scripts": {
"build": "npm run lint && tsc && chmod +x ./bin/mb-service.js",
"clean": "rimraf ./bin",
"lint": "eslint --max-warnings=0",
"lint-fix": "eslint --max-warnings=0 --fix",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/json": "^0",
"@eslint/markdown": "^7",
"@stylistic/eslint-plugin": "^5",
"@types/node": "^20",
"eslint": "^9",
"eslint-plugin-jsonc": "^2",
"eslint-plugin-yml": "^1",
"rimraf": "^6",
"typescript": "~5.9",
"typescript-eslint": "^8"
},
"engines": {
"node": ">=20"
}
}