forked from unjs/ipx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
{
"name": "ipx",
"version": "0.9.4",
"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 .",
"prepack": "yarn build",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"start": "node bin/ipx.js",
"test": "yarn lint && jest"
},
"dependencies": {
"consola": "^2.15.3",
"defu": "^5.0.1",
"destr": "^1.1.0",
"etag": "^1.8.1",
"image-meta": "^0.1.1",
"is-valid-path": "^0.1.1",
"listhen": "^0.2.6",
"ohmyfetch": "^0.4.15",
"pathe": "^0.2.0",
"sharp": "^0.30.1",
"ufo": "^0.7.10",
"xss": "^1.0.10"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "latest",
"@types/etag": "latest",
"@types/is-valid-path": "latest",
"@types/jest": "latest",
"@types/node-fetch": "latest",
"@types/sharp": "latest",
"eslint": "latest",
"jest": "latest",
"jiti": "latest",
"nodemon": "latest",
"standard-version": "latest",
"ts-jest": "latest",
"typescript": "latest",
"unbuild": "latest"
}
}