-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 1.97 KB
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
{
"name": "streamnet-cli",
"version": "1.0.0",
"description": "Torrent search + in-process WebTorrent streaming to native VLC with hash-based subtitles. Agent-native by design.",
"type": "module",
"license": "AGPL-3.0-or-later",
"author": "Eduardo Borjas <eduardoa.borjas@gmail.com>",
"homepage": "https://github.com/aedneth/streamnet-cli",
"repository": {
"type": "git",
"url": "https://github.com/aedneth/streamnet-cli.git"
},
"bugs": {
"url": "https://github.com/aedneth/streamnet-cli/issues"
},
"keywords": [
"torrent",
"webtorrent",
"vlc",
"streaming",
"subtitles",
"opensubtitles",
"cli",
"agent-native",
"mcp",
"korvex"
],
"engines": {
"node": ">=20"
},
"bin": {
"streamnet": "dist/cli.js"
},
"files": [
"dist",
"LICENSE",
"LICENSE-COMMERCIAL",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"dependencies": {
"commander": "^13.0.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.2",
"cheerio": "^1.0.0",
"execa": "^9.5.1",
"p-limit": "^6.1.0",
"fast-xml-parser": "^4.5.0",
"picocolors": "^1.1.1"
},
"optionalDependencies": {
"webtorrent": "^2.5.1"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/node": "^20.16.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^9.14.0",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typescript": "^5.5.4",
"vitest": "^4.1.8"
},
"overrides": {
"ip": ">=2.0.1"
}
}