-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "webtorrent-mpv-hook",
"version": "1.4.5",
"description": "Adds a hook that allows mpv to stream torrents",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "git+https://github.com/mrxdst/webtorrent-mpv-hook.git"
},
"bugs": {
"url": "https://github.com/mrxdst/webtorrent-mpv-hook/issues"
},
"homepage": "https://github.com/mrxdst/webtorrent-mpv-hook#readme",
"keywords": [
"mpv",
"webtorrent"
],
"bin": "build/bin.mjs",
"type": "module",
"scripts": {
"clean": "rimraf build",
"prebuild": "npm run lint",
"build": "npm run clean && tsc",
"lint": "eslint"
},
"files": [
"build"
],
"dependencies": {
"convert-units": "~2.3.4",
"mpv-json-ipc": "~1.0.1",
"webtorrent": "2.5.0"
},
"devDependencies": {
"@types/convert-units": "~2.3.3",
"@types/mpv-script": "~0.32.1",
"@types/node": "~22.5.2",
"@types/webtorrent": "~0.109.3",
"eslint": "~9.9.1",
"rimraf": "~6.0.1",
"typescript": "~5.5.4",
"typescript-eslint": "~8.4.0"
}
}