scanbot-web-sdk 2.9.2-beta2 → 2.9.2-beta3
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/@types/interfaces/i-barcode-scanner-handle.d.ts +2 -2
- package/@types/interfaces/i-document-scanner-handle.d.ts +2 -2
- package/@types/interfaces/i-mrz-scanner-handle.d.ts +2 -2
- package/@types/interfaces/i-scanner-common-handle.d.ts +4 -0
- package/@types/interfaces/i-text-data-scanner-handle.d.ts +2 -2
- package/@types/scanner-view.d.ts +1 -0
- package/@types/utils/video-stream.d.ts +2 -0
- package/@types/view/scanbot-camera-view.d.ts +9 -1
- package/bundle/ScanbotSDK.min.js +1 -1
- package/bundle/bin/barcode-scanner/ScanbotSDK.Core.js +1 -1
- package/bundle/bin/complete/ScanbotSDK.Core.js +1 -1
- package/bundle/bin/document-scanner/ScanbotSDK.Core.js +1 -1
- package/package.json +75 -75
package/package.json
CHANGED
|
@@ -1,80 +1,80 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
2
|
+
"name": "scanbot-web-sdk",
|
|
3
|
+
"title": "Web Scan SDK",
|
|
4
|
+
"version": "2.9.2-beta3",
|
|
5
|
+
"description": "Scanbot Web Document and Barcode Scanner SDK",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"barcode",
|
|
8
|
+
"qr-code",
|
|
9
|
+
"scanner",
|
|
10
|
+
"scan",
|
|
11
|
+
"scanning",
|
|
12
|
+
"1d barcode",
|
|
13
|
+
"2d barcode",
|
|
14
|
+
"ean",
|
|
15
|
+
"upc",
|
|
16
|
+
"data",
|
|
17
|
+
"matrix",
|
|
18
|
+
"pdf-417",
|
|
19
|
+
"document scanner",
|
|
20
|
+
"web scanner",
|
|
21
|
+
"web document scanner",
|
|
22
|
+
"webassembly",
|
|
23
|
+
"sdk",
|
|
24
|
+
"scanbot sdk",
|
|
25
|
+
"webscanner",
|
|
26
|
+
"document web scanner sdk",
|
|
27
|
+
"camera",
|
|
28
|
+
"chrome",
|
|
29
|
+
"safari",
|
|
30
|
+
"web",
|
|
31
|
+
"react",
|
|
32
|
+
"angular",
|
|
33
|
+
"vue.js",
|
|
34
|
+
"edge detection",
|
|
35
|
+
"filter",
|
|
36
|
+
"recognition"
|
|
37
|
+
],
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "npm run build-lib && npm run build-src",
|
|
40
|
+
"dev-build": "npm run dev-build-lib && npm run dev-build-src",
|
|
41
|
+
"build-lib": "lib/core/wrappers/websdk/build-all-flavours.sh",
|
|
42
|
+
"dev-build-lib": "CMAKE_BUILD_TYPE=Debug lib/core/wrappers/websdk/build-all-flavours.sh",
|
|
43
|
+
"build-src": "npx webpack --mode production && mkdir -p internal-dev-app/data && date '+%a %b %d %Y %H:%M:%S GMT%z (%Z)' >> internal-dev-app/data/src-build-date.txt",
|
|
44
|
+
"dev-build-src": "npx webpack --mode development && mkdir -p internal-dev-app/data && date '+%a %b %d %Y %H:%M:%S GMT%z (%Z)' >> internal-dev-app/data/src-build-date.txt",
|
|
45
|
+
"create-npm-package": "rm -rf component && npm run transpile && npm pack",
|
|
46
|
+
"clean": "npm run clean-src && rm -rf lib/cmake-build",
|
|
47
|
+
"clean-src": "rm -rf component/ && rm -rf @types/ && rm -rf bundle/",
|
|
48
|
+
"clear-packages": "rm -f scanbot-*.tgz",
|
|
49
|
+
"start-example": "open \"http://localhost:8000\" && python3 -m http.server --directory internal-dev-app",
|
|
50
|
+
"transpile": "npx tsc --declaration && cp -r src/styles src/core component/",
|
|
51
|
+
"cp-typings": "rsync -a --include '*/' --include '*.d.ts' --exclude '*' ./component/ ./@types/ && cp src/_misc/typings-entrypoint.d.ts ./@types/index.d.ts",
|
|
52
|
+
"prepack": "npm run clean && npm run build-lib && npm run transpile && npm run cp-typings && npm run build-src && rm bundle/ScanbotSDK.min.js.LICENSE.txt",
|
|
53
|
+
"dev-pack": "npm run clean-src && npm run transpile && npm run dev-build-src && npm pack --ignore-scripts"
|
|
54
|
+
},
|
|
55
|
+
"main": "index.js",
|
|
56
|
+
"types": "index.d.ts",
|
|
57
|
+
"author": "Scanbot / doo GmbH",
|
|
58
|
+
"license": "Commercial",
|
|
59
|
+
"readmeFilename": "README.md",
|
|
60
|
+
"homepage": "https://scanbot.io",
|
|
19
61
|
"contributors": [
|
|
20
62
|
{
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
63
|
+
"name": "Scanbot",
|
|
64
|
+
"email": "sdk@scanbot.io",
|
|
65
|
+
"url": "https://scanbot.io"
|
|
24
66
|
}
|
|
25
|
-
],
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
"start-example": "open \"http://localhost:8000\" && python3 -m http.server --directory internal-dev-app",
|
|
39
|
-
"clear-packages": "rm -f scanbot-*.tgz",
|
|
40
|
-
"prepack": "npm run clean && npm run build-lib && npm run transpile && npm run cp-typings && npm run build-src && rm bundle/ScanbotSDK.min.js.LICENSE.txt",
|
|
41
|
-
"dev-build-lib": "CMAKE_BUILD_TYPE=Debug lib/core/wrappers/websdk/build-all-flavours.sh"
|
|
42
|
-
},
|
|
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",
|
|
56
|
-
"document scanner",
|
|
57
|
-
"web scanner",
|
|
58
|
-
"web document scanner",
|
|
59
|
-
"webassembly",
|
|
60
|
-
"sdk",
|
|
61
|
-
"scanbot sdk",
|
|
62
|
-
"webscanner",
|
|
63
|
-
"document web scanner sdk",
|
|
64
|
-
"camera",
|
|
65
|
-
"chrome",
|
|
66
|
-
"safari",
|
|
67
|
-
"web",
|
|
68
|
-
"react",
|
|
69
|
-
"angular",
|
|
70
|
-
"vue.js",
|
|
71
|
-
"edge detection",
|
|
72
|
-
"filter",
|
|
73
|
-
"recognition"
|
|
74
|
-
],
|
|
75
|
-
"devDependencies": {},
|
|
76
|
-
"main": "index.js",
|
|
77
|
-
"readmeFilename": "README.md",
|
|
78
|
-
"types": "index.d.ts",
|
|
79
|
-
"name": "scanbot-web-sdk"
|
|
67
|
+
],
|
|
68
|
+
"devDependencies": {},
|
|
69
|
+
"dependencies": {},
|
|
70
|
+
"files": [
|
|
71
|
+
"bundle/*",
|
|
72
|
+
"webpack/",
|
|
73
|
+
"@types/*",
|
|
74
|
+
"index.js",
|
|
75
|
+
"*.d.ts",
|
|
76
|
+
"README.md",
|
|
77
|
+
"Libraries.txt",
|
|
78
|
+
"LICENSE"
|
|
79
|
+
]
|
|
80
80
|
}
|