-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1014 Bytes
/
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
{
"name": "chromecast-cli",
"version": "3.0.1",
"description": "Command line interface for Google Chromecast",
"author": "Erk Struwe <[email protected]>",
"main": "chromecast-cli.js",
"engines": {
"node": ">=18",
"npm": ">=9"
},
"preferGlobal": true,
"bin": {
"chromecast": "./chromecast-cli.js"
},
"keywords": [
"chromecast",
"cli",
"cast",
"stream",
"google"
],
"homepage": "https://github.com/erkstruwe/chromecast-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/erkstruwe/chromecast-cli.git"
},
"bugs": {
"url": "https://github.com/erkstruwe/chromecast-cli/issues"
},
"scripts": {
"test": "echo 'No tests. Skipping.'",
"start": "node chromecast-cli.js",
"preversion": "npm test",
"postversion": "git push origin master --follow-tags && npm publish"
},
"dependencies": {
"async": "^3.2.0",
"castv2-client": "^1.2.0",
"commander": "^2.20.3",
"lodash": "^4.17.20"
}
}