mirror of
https://github.com/baairon/torlink.git
synced 2026-07-08 18:28:22 +02:00
Curated, multi-source torrent search and download from the terminal: concurrent search across built-in sources with streamed, source-tagged results; a download-only webtorrent engine with true pause/resume and restart recovery; magnet paste; and a calm Ink + React TUI. No indexer server, no setup.
66 lines
1.4 KiB
JSON
66 lines
1.4 KiB
JSON
{
|
|
"name": "torlink",
|
|
"version": "1.0.0",
|
|
"description": "Terminal-native torrent discovery. No browser, no ads, no hunting: search and download torrents from a clean terminal UI.",
|
|
"type": "module",
|
|
"bin": {
|
|
"torlink": "./dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"preview"
|
|
],
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"scripts": {
|
|
"dev": "tsx src/index.tsx",
|
|
"build": "tsup",
|
|
"start": "node dist/index.js",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"previews": "tsx scripts/render-previews.tsx",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"torrent",
|
|
"magnet",
|
|
"webtorrent",
|
|
"tui",
|
|
"cli",
|
|
"terminal",
|
|
"downloader",
|
|
"search",
|
|
"fitgirl"
|
|
],
|
|
"author": "bairon",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/baairon/torlink.git"
|
|
},
|
|
"homepage": "https://github.com/baairon/torlink#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/baairon/torlink/issues"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"env-paths": "^4.0.0",
|
|
"ink": "^7.0.5",
|
|
"parse-torrent": "^11.0.21",
|
|
"react": "^19.2.7",
|
|
"webtorrent": "^2.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.9.2",
|
|
"@types/react": "^19.2.17",
|
|
"ink-testing-library": "^4.0.0",
|
|
"tsup": "^8.5.1",
|
|
"tsx": "^4.22.4",
|
|
"typescript": "^6.0.3",
|
|
"vitest": "^4.1.8"
|
|
}
|
|
}
|