forked from Steve-Mcl/node-red-contrib-image-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.24 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
{
"name": "node-red-contrib-image-tools",
"version": "1.4.0",
"description": "A dynamic Image editor node with over 40 functions, a viewer node and a 1D + 2D Barcode Decoder node",
"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": {
"nodes": {
"jimp": "jimp.js",
"xzingDecode": "xzingDecode.js",
"imageViewer": "imageViewer.js"
}
},
"directories": {
"example": "examples"
},
"dependencies": {
"@jimp/custom": "^0.16.1",
"@jimp/plugin-blur": "^0.16.1",
"@jimp/plugin-color": "^0.16.1",
"@jimp/plugin-resize": "^0.16.1",
"@jimp/plugin-threshold": "^0.16.1",
"@zxing/library": "^0.17.0",
"is-base64": "^1.1.0",
"jimp": "^0.16.1"
}
}