-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.41 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": "node-zopflipng",
"version": "3.0.0",
"description": "Native module for zopflipng",
"repository": {
"type": "git",
"url": "git+https://github.com/realityking/node-zopflipng.git"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=22.11.0"
},
"keywords": [
"png",
"zopfli",
"zopflipng",
"compress",
"image",
"node-addon-api"
],
"author": {
"name": "Rouven Wessling",
"url": "github.com/realityking"
},
"scripts": {
"install": "node-gyp-build",
"prebuild": "prebuildify --napi --tag-libc --tag-armv --strip",
"lint": "eslint",
"test": "ava && tsd"
},
"license": "(MIT AND Apache-2.0 AND Zlib)",
"gypfile": true,
"main": "lib/zopflipng.js",
"types": "lib/zopflipng.d.ts",
"exports": {
".": {
"require": "./lib/zopflipng.js",
"import": "./lib/zopflipng.mjs"
},
"./package.json": "./package.json"
},
"files": [
"CHANGELOG.md",
"src",
"lib",
"prebuilds",
"binding.gyp"
],
"dependencies": {
"is-png": "^2.0.0",
"node-addon-api": "^8.3.0",
"node-gyp-build": "^4.2.3"
},
"devDependencies": {
"@types/node": "^22.10.7",
"ava": "^6.2.0",
"eslint": "^9.18.0",
"eslint-plugin-ava": "^15.0.1",
"neostandard": "^0.12.0",
"node-gyp": "^11.0.0",
"prebuildify": "^6.0.1",
"sharp": "^0.33.5",
"tsd": "^0.31.2"
},
"tsd": {
"directory": "test"
}
}