-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "js-convert-images",
"description": "Convert images from an url or an input file to another type",
"version": "0.1.2",
"repository": {
"type": "git",
"url": "git+https://github.com/ddgll/convert-images.git"
},
"files": [
"dist"
],
"main": "./dist/js-convert-images.umd.js",
"module": "./dist/js-convert-images.es.js",
"exports": {
".": {
"import": "./dist/js-convert-images.es.js",
"require": "./dist/js-convert-images.umd.js"
}
},
"types": "./dist/types/index.d.ts",
"keywords": [
"png to webp",
"jpeg to webp",
"git to webp",
"webp",
"javascript"
],
"author": "David Grill <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ddgll/convert-images/issues"
},
"homepage": "https://github.com/ddgll/convert-images#readme",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && mkdir dist/types && cp lib/index.d.ts dist/types/index.d.ts",
"preview": "vite preview"
},
"devDependencies": {
"typescript": "^4.5.4",
"vite": "^2.8.0"
}
}