-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.23 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
{
"type": "module",
"name": "dht_indexer",
"version": "1.0.0",
"description": "A DHT indexer/crawler implemented in Node.js, designed to connect to each infohash through WebTorrent to retrieve information about seeders, leechers, and metadata associated with each infohash.",
"main": "src/main.js",
"scripts": {
"start": "node --no-warnings src/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "https://github.com/ralyodio/dht_indexer.git"
},
"keywords": [
"indexer",
"torrent",
"dht"
],
"author": "profullstack",
"license": "ISC",
"bugs": {
"url": "https://github.com/ralyodio/dht_indexer/issues"
},
"homepage": "https://github.com/ralyodio/dht_indexer#readme",
"dependencies": {
"bittorrent-dht": "~11.0.5",
"dht-infohash-crawler": "~0.3.2",
"fast-csv": "~5.0.1",
"magnet-uri": "~7.0.5",
"sqlite3": "~5.1.7",
"toml": "~3.0.0",
"webtorrent": "~2.1.36"
},
"devDependencies": {
"patch-package": "~8.0.0",
"postinstall-postinstall": "~2.1.0"
}
}