-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.12 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.12 KB
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
{
"name": "heic-to",
"version": "1.4.2",
"description": "Converting HEIF/HEIF image formats to PNG/JPEG in the browser",
"main": "dist/heic-to.js",
"exports": {
".": {
"types": "./dist/heic-to.d.ts",
"import": "./dist/heic-to.js",
"require": "./dist/heic-to.js"
},
"./csp": {
"types": "./dist/csp/heic-to.d.ts",
"import": "./dist/csp/heic-to.js",
"require": "./dist/csp/heic-to.js"
},
"./next": {
"types": "./dist/next/heic-to.d.ts",
"import": "./dist/next/heic-to.js",
"require": "./dist/next/heic-to.js"
}
},
"scripts": {
"build": "node esbuild.mjs",
"s": "npx http-server -o ./example"
},
"repository": {
"type": "git",
"url": "https://github.com/hoppergee/heic-to.git"
},
"types": "dist/heic-to.d.ts",
"keywords": [
"heic",
"heif",
"jpeg",
"jpg",
"png",
"conversion",
"convert",
"image",
"decoder"
],
"author": "Hopper Gee",
"license": "LGPL-3.0",
"homepage": "https://github.com/hoppergee/heic-to",
"devDependencies": {
"esbuild": "^0.25.4",
"http-server": "^14.1.1"
}
}