forked from sebbo2002/pyatv-mqtt-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.89 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
{
"author": "Sebastian Pekarek <[email protected]>",
"bin": {
"pyatv-mqtt-bridge": "./dist/bin/cli.js"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/sebbo2002/pyatv-mqtt-bridge/issues"
},
"dependencies": {
"@sebbo2002/node-pyatv": "^5.1.1",
"mqtt": "^4.3.7"
},
"description": "Bridge which allows you to control your Apple TV via MQTT",
"devDependencies": {
"@amanda-mitchell/semantic-release-npm-multiple": "^3.5.0",
"@qiwi/semantic-release-gh-pages-plugin": "^5.2.3",
"@sebbo2002/semantic-release-docker": "^2.1.0-develop.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-plugin-jsonc": "^2.5.0",
"esm": "^3.2.25",
"license-checker": "^25.0.1",
"semantic-release": "^19.0.5",
"semantic-release-license": "^1.0.3",
"ts-node": "^10.8.1",
"typedoc": "^0.23.20",
"typescript": "^4.8.4"
},
"engines": {
"node": "^12.20.0 || >=14.13.1"
},
"files": [
"/dist"
],
"homepage": "https://github.com/sebbo2002/js-template#readme",
"license": "MIT",
"main": "./dist/lib/index.js",
"name": "@sebbo2002/pyatv-mqtt-bridge",
"preferGlobal": false,
"repository": {
"type": "git",
"url": "https://github.com/sebbo2002/pyatv-mqtt-bridge.git"
},
"scripts": {
"build": "tsc && chmod +x ./dist/bin/*",
"build-all": "./.github/workflows/build.sh",
"develop": "ts-node ./src/bin/cli.ts",
"license-check": "license-checker --production --summary",
"lint": "eslint . --ext .ts",
"start": "node ./dist/bin/cli.js"
},
"type": "module"
}