-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.09 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
{
"name": "vectrax",
"version": "1.0.0",
"description": "Vectrax — a fast, resumable media extractor and download manager for the terminal.",
"keywords": ["cli", "download", "downloader", "scraper", "media", "audio", "resume", "concurrent"],
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.11"
},
"bin": {
"vectrax": "./dist/vectrax.js",
"vtx": "./dist/vectrax.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": ["dist", "README.md"],
"scripts": {
"build": "tsup",
"dev": "tsx src/bin/vectrax.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
},
"dependencies": {
"commander": "^14.0.1",
"string-width": "^8.1.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/node": "^24.10.1",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}