forked from sorccu/node-jpeg-turbo
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
{
"name": "@julusian/jpeg-turbo",
"version": "2.2.0",
"description": "Limited libjpeg-turbo bindings for Node.js.",
"keywords": [
"jpeg",
"jpeg-turbo",
"libjpeg-turbo"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Julusian/node-jpeg-turbo"
},
"binary": {
"napi_versions": [
7
]
},
"engines": {
"node": ">=14.15"
},
"main": "./index.js",
"types": "./module.d.ts",
"dependencies": {
"cmake-js": "^7.3.0",
"node-addon-api": "^6.1.0",
"pkg-prebuilds": "^1.0.0"
},
"scripts": {
"install": "pkg-prebuilds-verify ./binding-options.js || cmake-js compile --target jpeg-turbo",
"build": "cmake-js build --target jpeg-turbo",
"rebuild": "cmake-js rebuild --target jpeg-turbo",
"test": "jest"
},
"devDependencies": {
"jest": "^29.7.0"
},
"files": [
"/prebuilds",
"/src",
"/CMakeLists.txt",
"/index.js",
"/binding-options.js",
"/module.d.ts"
],
"packageManager": "yarn@4.3.1"
}