-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
62 lines (62 loc) · 1.51 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
{
"name": "node-red-contrib-image-tools",
"version": "2.1.1",
"description": "A dynamic image editor, image viewer, 1D/2D Barcode Generator and 1D/2D Barcode Decoder nodes",
"keywords": [
"node-red",
"barcode",
"datamatrix",
"QR",
"zxing",
"jimp",
"image editing",
"image processing",
"image manipulation",
"image viewer",
"png",
"jpg",
"jpeg",
"bmp",
"bitmap",
"resize",
"scale",
"crop"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Steve-Mcl/node-red-contrib-image-tools.git"
},
"node-red": {
"version": ">=1.0.0",
"nodes": {
"jimp": "jimp.js",
"xzingDecode": "xzingDecode.js",
"barcodeWriter": "barcodeWriter.js",
"imageViewer": "imageViewer.js",
"app": "app.js"
}
},
"directories": {
"example": "examples"
},
"dependencies": {
"@jimp/custom": "^0.22.12",
"@jimp/plugin-blur": "^0.22.12",
"@jimp/plugin-color": "^0.22.12",
"@jimp/plugin-resize": "^0.22.12",
"@jimp/plugin-threshold": "^0.22.12",
"@zxing/library": "^0.20.0",
"bwip-js": "^4.2.0",
"is-base64": "^1.1.0",
"jimp": "^0.22.12"
},
"overrides": {
"jimp": {
"jpeg-js": "^0.4.4"
}
},
"engines": {
"node" : ">=14.0.0"
}
}