-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 789 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 789 Bytes
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
{
"name": "@sovpro/davrc",
"version": "1.0.0",
"description": "A command-line utility to send control protocol commands to a Denon AVR",
"main": "dist/davrc",
"repository": {
"type": "git",
"url": "git+https://github.com/sovpro/davrc.git"
},
"keywords": [
"denon",
"avr",
"command-line",
"utility"
],
"author": "sovpro <its.so@outlook.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^13.11.1"
},
"engines": {
"node": ">= 10"
},
"bin": {
"davrc": "./bin/davrc"
},
"files": [
"dist/"
],
"types": "dist/davrc.d.ts",
"dependencies": {
"@sovpro/delimited-stream": "^1.0.5",
"@sovpro/gazillionth-queue": "^1.3.2",
"@sovpro/promise-connect": "^1.1.1",
"@sovpro/zclopts": "^1.0.0"
}
}