forked from unjs/ipx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.51 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
{
"name": "ipx",
"version": "1.2.0",
"repository": "unjs/ipx",
"license": "MIT",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": "./bin/ipx.mjs",
"files": [
"dist",
"bin"
],
"scripts": {
"build": "unbuild",
"dev": "nodemon",
"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",
"start": "node bin/ipx.js",
"test": "pnpm lint && vitest run --coverage"
},
"dependencies": {
"@fastify/accept-negotiator": "^1.1.0",
"consola": "^3.2.3",
"defu": "^6.1.2",
"destr": "^1.2.2",
"etag": "^1.8.1",
"image-meta": "^0.1.1",
"listhen": "^1.1.2",
"node-fetch-native": "^1.2.0",
"pathe": "^1.1.1",
"sharp": "^0.32.3",
"ufo": "^1.1.2",
"xss": "^1.0.14"
},
"devDependencies": {
"@types/etag": "^1.8.1",
"@types/is-valid-path": "^0.1.0",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^0.33.0",
"changelogen": "^0.5.4",
"eslint": "^8.45.0",
"eslint-config-unjs": "^0.2.1",
"jiti": "^1.19.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"serve-handler": "^6.1.5",
"typescript": "^5.1.6",
"unbuild": "^1.2.1",
"vitest": "^0.33.0"
},
"packageManager": "pnpm@8.6.9"
}