-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.64 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
{
"name": "vite-plugin-srcset",
"version": "2.1.0",
"description": "Vite plugin for the automatic generation of images in various formats and widths, for use in srcsets of <picture>- or <img>-elements.",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./client": {
"types": "./client.d.ts"
}
},
"homepage": "https://github.com/arma-events/vite-plugin-srcset#readme",
"repository": {
"type": "git",
"url": "https://github.com/arma-events/vite-plugin-srcset.git"
},
"files": [
"dist",
"client.d.ts"
],
"bugs": {
"url": "https://github.com/arma-events/vite-plugin-srcset/issues",
"email": "derzade@gmail.com"
},
"scripts": {
"build": "unbuild",
"lint": "eslint ./src",
"fmt": "prettier --write .",
"type-check": "tsc --noEmit",
"prepare": "npm run build"
},
"keywords": [
"vite",
"plugin",
"srcset",
"responsive",
"image"
],
"author": "Jonas Schade <derzade@gmail.com>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.11.16",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"unbuild": "^2.0.0"
},
"peerDependencies": {
"vite": "4 - 6"
},
"dependencies": {
"mime": "^4.0.4",
"sharp": "^0.33.5"
}
}