-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
74 lines (74 loc) · 1.92 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "dynamsoft-mrz-scanner",
"version": "2.0.0",
"description": "Dynamsoft MRZ Scanner JavaScript Edition is a ready-to-use SDK for web applications that accurately recognizes and parses Machine-Readable Zones on Machine-Readable Travel Documents.",
"files": [
"/dist",
"/LICENSE"
],
"sideEffects": true,
"main": "./dist/mrz-scanner.js",
"module": "./dist/mrz-scanner.no-content-bundle.esm.js",
"types": "./dist/mrz-scanner.d.ts",
"exports": {
"import": {
"types": "./dist/mrz-scanner.esm.d.ts",
"default": "./dist/mrz-scanner.no-content-bundle.esm.js"
},
"require": {
"types": "./dist/mrz-scanner.d.ts",
"default": "./dist/mrz-scanner.js"
}
},
"type": "module",
"scripts": {
"serve": "node dev-server/index.js",
"build": "rollup -c",
"build:production": "rollup -c --environment BUILD:production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dynamsoft/mrz-scanner-javascript"
},
"keywords": [
"document scanning",
"js",
"javascript",
"dynamsoft",
"mrz",
"scanner",
"ui",
"camera",
"vision"
],
"author": {
"name": "Dynamsoft",
"url": "https://www.dynamsoft.com"
},
"maintainers": [
{
"name": "Dynamsoft",
"email": "support@dynamsoft.com"
}
],
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://www.dynamsoft.com",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.6",
"rollup": "^4.9.5",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"cors": "^2.8.5",
"express": "^4.21.2",
"formidable": "^3.5.2"
},
"dependencies": {
"dynamsoft-capture-vision-bundle": "2.6.1000",
"dynamsoft-capture-vision-std": "1.4.21",
"dynamsoft-image-processing": "2.4.31"
}
}