scanbot-web-sdk 2.8.0 → 2.8.2-beta1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +8 -0
- package/README.md +62 -27
- package/bundle/ScanbotSDK.min.js +1 -1
- package/bundle/bin/barcode-scanner/ScanbotSDK.Asm.wasm +0 -0
- package/bundle/bin/barcode-scanner/ScanbotSDK.Asm.wasm-webpack-file-loader +0 -0
- package/bundle/bin/barcode-scanner/ScanbotSDK.Core.js +1 -1
- package/bundle/bin/complete/ScanbotSDK.Asm.wasm +0 -0
- package/bundle/bin/complete/ScanbotSDK.Asm.wasm-webpack-file-loader +0 -0
- package/bundle/bin/complete/ScanbotSDK.Core.js +1 -1
- package/bundle/bin/document-scanner/ScanbotSDK.Asm.wasm +0 -0
- package/bundle/bin/document-scanner/ScanbotSDK.Asm.wasm-webpack-file-loader +0 -0
- package/bundle/bin/document-scanner/ScanbotSDK.Core.js +1 -1
- package/package.json +36 -14
package/package.json
CHANGED
|
@@ -6,12 +6,23 @@
|
|
|
6
6
|
"index.js",
|
|
7
7
|
"*.d.ts",
|
|
8
8
|
"README.md",
|
|
9
|
-
"Libraries.txt"
|
|
9
|
+
"Libraries.txt",
|
|
10
|
+
"LICENSE"
|
|
10
11
|
],
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
12
|
+
"description": "Scanbot Web Document and Barcode Scanner SDK",
|
|
13
|
+
"license": "Commercial",
|
|
14
|
+
"title": "Web Scan SDK",
|
|
15
|
+
"homepage": "https://scanbot.io",
|
|
16
|
+
"author": "Scanbot / doo GmbH",
|
|
17
|
+
"version": "2.8.2-beta1",
|
|
14
18
|
"dependencies": {},
|
|
19
|
+
"contributors": [
|
|
20
|
+
{
|
|
21
|
+
"url": "https://scanbot.io",
|
|
22
|
+
"name": "Scanbot",
|
|
23
|
+
"email": "sdk@scanbot.io"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
15
26
|
"scripts": {
|
|
16
27
|
"build-lib": "lib/core/wrappers/websdk/build-all-flavours.sh",
|
|
17
28
|
"dev-pack": "npm run clean-src && npm run transpile && npm run dev-build-src && npm pack --ignore-scripts",
|
|
@@ -30,29 +41,40 @@
|
|
|
30
41
|
"dev-build-lib": "CMAKE_BUILD_TYPE=Debug lib/core/wrappers/websdk/build-all-flavours.sh"
|
|
31
42
|
},
|
|
32
43
|
"keywords": [
|
|
44
|
+
"barcode",
|
|
45
|
+
"qr-code",
|
|
46
|
+
"scanner",
|
|
47
|
+
"scan",
|
|
48
|
+
"scanning",
|
|
49
|
+
"1d barcode",
|
|
50
|
+
"2d barcode",
|
|
51
|
+
"ean",
|
|
52
|
+
"upc",
|
|
53
|
+
"data",
|
|
54
|
+
"matrix",
|
|
55
|
+
"pdf-417",
|
|
33
56
|
"document scanner",
|
|
34
57
|
"web scanner",
|
|
35
58
|
"web document scanner",
|
|
36
59
|
"webassembly",
|
|
37
|
-
"
|
|
60
|
+
"sdk",
|
|
38
61
|
"scanbot sdk",
|
|
39
|
-
"
|
|
40
|
-
"web scanner
|
|
41
|
-
"ios sdk",
|
|
42
|
-
"android sdk",
|
|
43
|
-
"webscanner document",
|
|
44
|
-
"web scanner sdk",
|
|
62
|
+
"webscanner",
|
|
63
|
+
"document web scanner sdk",
|
|
45
64
|
"camera",
|
|
46
65
|
"chrome",
|
|
47
66
|
"safari",
|
|
48
67
|
"web",
|
|
49
68
|
"react",
|
|
50
69
|
"angular",
|
|
51
|
-
"vue.js"
|
|
70
|
+
"vue.js",
|
|
71
|
+
"edge detection",
|
|
72
|
+
"filter",
|
|
73
|
+
"recognition"
|
|
52
74
|
],
|
|
53
75
|
"devDependencies": {},
|
|
54
76
|
"main": "index.js",
|
|
55
|
-
"
|
|
77
|
+
"readmeFilename": "README.md",
|
|
56
78
|
"types": "index.d.ts",
|
|
57
|
-
"
|
|
79
|
+
"name": "scanbot-web-sdk"
|
|
58
80
|
}
|