-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.22 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
51
52
53
54
55
56
{
"name": "c-libraw",
"version": "1.0.0",
"description": "Node.js N-API addon to convert RAW/CR2 to TIFF using LibRaw (cross-platform)",
"main": "index.cjs",
"type": "commonjs",
"scripts": {
"install": "prebuild-install || node scripts/install-fallback.cjs",
"prepare": "prebuild-install || node scripts/install-fallback.cjs",
"build": "node-gyp rebuild --directory libraw",
"rebuild": "node-gyp rebuild --directory libraw",
"prebuild": "cd libraw && prebuildify --napi --strip --tag-libc"
},
"keywords": [
"libraw",
"raw",
"cr2",
"tiff",
"napi",
"node-addon",
"native"
],
"author": "",
"license": "ISC",
"engines": {
"node": ">=18"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"files": [
"index.cjs",
"libraw/**/*",
"prebuilds/**/*",
"scripts/install-fallback.cjs",
"scripts/setup-libraw.ps1"
],
"gypfile": true,
"dependencies": {
"node-addon-api": "^7.1.0",
"node-gyp-build": "^4.8.1",
"prebuild-install": "^7.1.2"
},
"devDependencies": {
"node-gyp": "^10.2.0",
"napi-build-utils": "^1.0.2",
"prebuildify": "^6.0.1"
},
"packageManager": "pnpm@10.13.1"
}