-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
72 lines (72 loc) · 1.9 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
{
"name": "ipx",
"version": "3.0.1",
"repository": "unjs/ipx",
"description": "High performance, secure and easy-to-use image optimizer.",
"license": "MIT",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": "./bin/ipx.mjs",
"files": [
"dist",
"bin"
],
"scripts": {
"build": "unbuild",
"dev": "listhen -w playground",
"ipx": "jiti ./src/cli.ts",
"lint": "eslint --ext .ts . && prettier -c src test",
"lint:fix": "eslint --ext .ts . --fix && prettier -w src test",
"prepack": "pnpm build",
"release": "pnpm test && changelogen --release --push && npm publish",
"prerelease": "pnpm test && pnpm build && changelogen --release --prerelease --push --publish --publishTag latest",
"start": "node bin/ipx.js",
"test": "pnpm lint && vitest run --coverage"
},
"dependencies": {
"@fastify/accept-negotiator": "^1.1.0",
"citty": "^0.1.6",
"consola": "^3.2.3",
"defu": "^6.1.4",
"destr": "^2.0.3",
"etag": "^1.8.1",
"h3": "^1.11.1",
"image-meta": "^0.2.0",
"listhen": "^1.7.2",
"ofetch": "^1.3.4",
"pathe": "^1.1.2",
"sharp": "^0.33.3",
"svgo": "^3.2.0",
"ufo": "^1.5.3",
"unstorage": "^1.10.2",
"xss": "^1.0.15"
},
"devDependencies": {
"@types/etag": "^1.8.3",
"@types/is-valid-path": "^0.1.2",
"@vitest/coverage-v8": "^1.5.2",
"changelogen": "^0.5.5",
"eslint": "^8.57.0",
"eslint-config-unjs": "^0.2.1",
"jiti": "^1.21.0",
"prettier": "^3.2.5",
"serve-handler": "^6.1.5",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vitest": "^1.5.2"
},
"packageManager": "[email protected]"
}