Package Information
This information is automatically extracted from package.json:
json
{
"name": "@rosepetal/node-red-contrib-barcode-reader",
"version": "1.2.4",
"description": "Rosepetal multi-decoder barcode scanner with ZBar, ZXing, and Quagga2 support",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rosepetal-ai/node-red-contrib-barcode-reader.git"
},
"keywords": [
"node-red",
"barcode",
"zbar",
"zxing",
"quagga2",
"scanner"
],
"author": "Rosepetal SL (https://www.rosepetal.ai)",
"contributors": [
{
"name": "Víctor González Bentué",
"email": "victor.gonzalez@rosepetal.ai"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rosepetal-ai/node-red-contrib-barcode-reader/issues"
},
"homepage": "https://github.com/rosepetal-ai/node-red-contrib-barcode-reader#readme",
"dependencies": {
"@ericblade/quagga2": "1.12.1",
"jpeg-js": "^0.4.4"
},
"optionalDependencies": {
"@rosepetal/node-red-contrib-barcode-reader-linux-x64": "1.2.4",
"@rosepetal/node-red-contrib-barcode-reader-linux-arm64": "1.2.4",
"@rosepetal/node-red-contrib-barcode-reader-linuxmusl-x64": "1.2.4"
},
"config": {
"unsafe-perm": true
},
"node-red": {
"version": ">=1.0.0",
"nodes": {
"barcode-reader": "node-red-contrib-barcode-reader/barcode.js"
}
}
}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
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