-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 993 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 993 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
{
"name": "roon-cli",
"version": "1.0.0",
"description": "Command-line interface for Roon music player",
"type": "module",
"bin": {
"roon": "./dist/cli.cjs",
"roon-daemon": "./dist/daemon.cjs"
},
"scripts": {
"build": "node build.js",
"dev:daemon": "tsx src/daemon/index.ts",
"dev:cli": "tsx src/cli/index.ts"
},
"keywords": ["roon", "cli", "music", "audio"],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.0",
"esbuild": "^0.19.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
},
"dependencies": {
"commander": "^11.1.0",
"node-roon-api": "github:RoonLabs/node-roon-api",
"node-roon-api-browse": "github:RoonLabs/node-roon-api-browse",
"node-roon-api-image": "github:RoonLabs/node-roon-api-image",
"node-roon-api-status": "github:RoonLabs/node-roon-api-status",
"node-roon-api-transport": "github:RoonLabs/node-roon-api-transport"
},
"engines": {
"node": ">=18.0.0"
}
}