-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "img-dl",
"version": "0.8.0",
"description": "Download image(s), by command or programmatically",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"imgdl": "dist/cli.js"
},
"files": ["dist"],
"scripts": {
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"build": "tsup src/index.ts src/cli.ts --format esm -d dist --clean --dts src/index.ts --sourcemap --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fityannugroho/img-dl.git"
},
"keywords": ["image-downloader", "nodejs", "cli"],
"author": "Fityan <fityannugroho@gmail.com> (https://github.com/fityannugroho)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fityannugroho/img-dl/issues"
},
"homepage": "https://github.com/fityannugroho/img-dl#readme",
"funding": "https://github.com/sponsors/fityannugroho",
"engines": {
"node": ">=20.9"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/cli-progress": "^3.11.6",
"@types/node": "^22.13.10",
"@vitest/coverage-v8": "^3.0.9",
"execa": "^9.5.2",
"file-type": "^20.4.1",
"msw": "^2.7.3",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
},
"dependencies": {
"chalk": "^5.4.1",
"cli-progress": "^3.12.0",
"got": "^14.4.6",
"meow": "^13.2.0",
"p-queue": "^8.1.0",
"sanitize-filename": "^1.6.3",
"sharp": "^0.33.5"
}
}