-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
76 lines (76 loc) · 1.79 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
{
"name": "live-torrent-backend",
"version": "2.2.0",
"description": "the backend server for the live-torrent project",
"main": "./src/index.ts",
"type": "module",
"scripts": {
"start": "tsx ./src",
"dev": "tsx watch ./src",
"test": "mocha 'test/**/*.spec.ts' --exit"
},
"exports": {
"require": "tsx/cjs",
"import": "tsx/esm"
},
"mocha": {
"node-option": [
"import=tsx"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Davenchy/live-torrent-backend.git"
},
"keywords": [
"backend",
"hono",
"live-torrent",
"torrent",
"webtorrent",
"server",
"stream"
],
"bugs": {
"url": "https://github.com/Davenchy/live-torrent-backend/issues"
},
"author": "Davenchy",
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.11.2",
"@hono/swagger-ui": "^0.2.2",
"dotenv": "^16.4.5",
"fuzzy-search": "^3.2.1",
"hono": "^4.4.4",
"iconv-lite": "^0.6.3",
"iso-language-codes": "^2.0.0",
"jschardet": "^3.1.2",
"mime": "^4.0.3",
"opensubtitles.com": "^1.1.0",
"range-parser": "^1.2.1",
"srt-to-vtt": "^1.1.3",
"srt2vtt": "^1.3.1",
"ssl-validator": "^4.0.0",
"torrent-search-api": "^2.1.4",
"webtorrent": "^2.4.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@types/chai": "^4.3.16",
"@types/fuzzy-search": "^2.1.5",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.2",
"@types/range-parser": "^1.2.7",
"@types/torrent-search-api": "^2.0.3",
"@types/webtorrent": "^0.109.8",
"@types/yamljs": "^0.2.34",
"chai": "^5.1.1",
"eslint": "^8.56.0",
"globals": "^15.4.0",
"mocha": "^10.4.0",
"prettier": "^3.3.1",
"tsx": "^4.15.1",
"typescript-eslint": "^7.12.0"
}
}