-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 2.62 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "handy-img",
"version": "0.9.1",
"description": "handy img tool and API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"bin": {
"handy-img": "./dist/bin.mjs",
"himg": "./dist/bin.mjs"
},
"files": [
"dist",
"CHANGELOG.md"
],
"scripts": {
"prepare": "husky",
"dev": "tsup --watch",
"build": "tsup",
"prepublishOnly": "pnpm build",
"test": "vitest run",
"test-cover": "vitest run --coverage",
"report-cover": "codecov"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/magicdawn/handy-img.git"
},
"keywords": [
"handy-img",
"img",
"sharp",
"resize",
"compress",
"mozjpeg"
],
"author": "magicdawn",
"license": "MIT",
"bugs": {
"url": "https://github.com/magicdawn/handy-img/issues"
},
"homepage": "https://github.com/magicdawn/handy-img#readme",
"dependencies": {
"@magicdawn/finder-sort": "^0.4.0",
"@magicdawn/x-args": "^1.5.4",
"@vingle/bmp-js": "^0.2.5",
"bytes": "^3.1.2",
"chalk": "^5.3.0",
"clipanion": "^3.2.1",
"esm-utils": "^4.3.0",
"exifr": "^7.1.3",
"fast-glob": "^3.3.2",
"figures": "^6.1.0",
"fs-extra": "^11.2.0",
"humanize-duration": "^3.32.1",
"log-symbols": "^7.0.0",
"mac-helper": "^0.1.5",
"micromatch": "^4.0.8",
"node-mozjpeg": "^1.0.1",
"os-locale": "^6.0.2",
"path-type": "^6.0.0",
"promise.map": "^0.5.0",
"sharp": "^0.33.5",
"typanion": "^3.14.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@magicdawn/eslint-config": "^0.1.0",
"@magicdawn/prettier-config": "^0.0.4",
"@swc/core": "^1.9.1",
"@swc/helpers": "^0.5.13",
"@types/bytes": "^3.1.4",
"@types/eslint": "^9.6.1",
"@types/fs-extra": "^11.0.4",
"@types/humanize-duration": "^3.27.4",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/ui": "^2.1.4",
"eslint": "9.14.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"type-fest": "^4.26.1",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"lint-staged": {
"*.{ts,tsx,json,yml,md}": [
"prettier --write"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}