-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
100 lines (100 loc) · 2.21 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "webtorrent-cli",
"type": "module",
"description": "WebTorrent, the streaming torrent client. For the command line.",
"version": "5.1.2",
"author": {
"name": "WebTorrent LLC",
"email": "[email protected]",
"url": "https://webtorrent.io"
},
"bin": {
"webtorrent": "./bin/cmd.js"
},
"bugs": {
"url": "https://github.com/webtorrent/webtorrent-cli/issues"
},
"dependencies": {
"chalk": "^4.1.1",
"common-tags": "^1.8.0",
"create-torrent": "^6.0.17",
"dlnacasts": "^0.1.0",
"ecstatic": "^4.1.4",
"inquirer": "^8.2.2",
"memory-chunk-store": "^1.3.5",
"mime": "^3.0.0",
"moment": "^2.29.1",
"network-address": "^1.1.2",
"open": "^8.2.1",
"parse-torrent": "^9.1.3",
"prettier-bytes": "^1.0.4",
"vlc-command": "^1.2.0",
"webtorrent": "^2.3.0",
"winreg": "^1.2.4",
"yargs": "^17.0.1"
},
"devDependencies": {
"@webtorrent/semantic-release-config": "1.0.10",
"cross-spawn": "7.0.3",
"semantic-release": "21.1.2",
"standard": "*",
"tape": "5.9.0",
"webtorrent-fixtures": "2.0.2",
"xtend": "4.0.2"
},
"engines": {
"node": ">=16"
},
"exports": {
"./bin/cmd.js": "./bin/cmd.js"
},
"homepage": "https://webtorrent.io",
"keywords": [
"bittorrent",
"bittorrent client",
"download",
"mad science",
"streaming",
"torrent",
"webrtc",
"webrtc data",
"webtorrent"
],
"license": "MIT",
"optionalDependencies": {
"airplay-js": "^0.3.0",
"chromecasts": "^1.10.0",
"nodebmc": "0.0.7"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/webtorrent/webtorrent-cli.git"
},
"scripts": {
"test": "standard && tape test/*.js",
"update-authors": "./tools/update-authors.sh"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"renovate": {
"extends": [
"github>webtorrent/renovate-config"
]
},
"release": {
"extends": "@webtorrent/semantic-release-config"
}
}