-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 895 Bytes
/
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
{
"name": "hydr",
"version": "1.1.4",
"description": "🐲 download files faster using multiple http requests, just like hydra!",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"hydr": "./dist/cli.js"
},
"scripts": {
"build": "tsc --build --force"
},
"files": [
"dist/**/*"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maythiwat/hydr.git"
},
"homepage": "https://github.com/maythiwat/hydr",
"keywords": [
"cli",
"download",
"downloader",
"parallel"
],
"dependencies": {
"axios": "^0.21.1",
"cli-progress": "^3.9.0",
"mime-types": "^2.1.32",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/cli-progress": "^3.9.2",
"@types/mime-types": "^2.1.0",
"@types/node": "^16.4.13",
"@types/yargs": "^17.0.2",
"typescript": "^4.3.5"
}
}