forked from photopea/UPNG.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 854 Bytes
/
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
{
"name": "upng-js",
"description": "Small, fast and advanced PNG / APNG encoder and decoder",
"version": "2.2.0",
"homepage": "https://github.com/photopea/UPNG.js",
"author": "photopea (https://github.com/photopea)",
"contributors": [
"Scimonster (https://github.com/Scimonster)"
],
"license": "MIT",
"repository": "github:photopea/UPNG.js",
"bugs": {
"url": "https://github.com/photopea/UPNG.js/issues"
},
"exports": {
".": {
"require": "./src/upng.cjs",
"import": "./src/upng.mjs"
}
},
"scripts": {
"prepack": "esbuild ./src/upng.mjs --bundle --platform=node --outfile=./src/upng.cjs"
},
"main": "src/upng.cjs",
"keywords": [
"png",
"apng",
"image",
"conversion"
],
"dependencies": {
"pako": "^1.0.5"
},
"devDependencies": {
"esbuild": "^0.18.11"
}
}