forked from MyUnisoft/heif-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.74 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
{
"name": "@myunisoft/heif-converter",
"description": "Bindings for the libheif C API to convert an image in Node.js, including Windows fix regarding zlib missing",
"version": "0.2.2",
"keywords": [
"heif",
"heic",
"convert",
"converter",
"image",
"jpeg",
"jpg"
],
"engines": {
"node": ">=18.x"
},
"gypfile": true,
"repository": {
"type": "git",
"url": "https://github.com/cloudflightio/heif-converter"
},
"bugs": {
"url": "https://github.com/MyUnisoft/heif-converter/issues"
},
"homepage": "https://github.com/MyUnisoft/heif-converter",
"types": "index.d.ts",
"main": "index.js",
"scripts": {
"test": "node --test test/test.spec.js",
"clear": "rimraf src/build src/node_modules",
"configure": "node-gyp configure --directory=src",
"build": "node-gyp build --directory=src"
},
"publishConfig": {
"@myunisoft:registry": "https://registry.npmjs.org/"
},
"author": "Nicolas Marteau <[email protected]>",
"license": "MIT",
"files": [
"index.js",
"index.d.ts",
"docs/"
],
"devDependencies": {
"@nodesecure/eslint-config": "^1.9.0",
"file-type": "^19.0.0",
"heic-convert": "^2.1.0",
"node-addon-api": "^8.0.0",
"node-gyp": "10.0.0",
"rimraf": "^6.0.1",
"tinybench": "^2.8.0"
},
"optionalDependencies": {
"@myunisoft/heif-converter.darwin-x64": "^0.0.6",
"@myunisoft/heif-converter.linux-x64": "^0.1.6",
"@myunisoft/heif-converter.linuxmusl-x64": "^0.2.4",
"@myunisoft/heif-converter.win32-ia32": "^0.0.4",
"@myunisoft/heif-converter.win32-x64": "https://github.com/cloudflightio/heif-converter/releases/download/v0.2.3-win-fix/win32-x64.tar.gz"
},
"dependencies": {
"detect-libc": "^2.0.3"
}
}