-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.24 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "dynamsoft-capture-vision-for-node",
"version": "3.0.1007",
"description": "Dynamsoft Capture Vision (DCV) is a comprehensive SDK that integrates various functional products. It encompasses image capture, content understanding, result parsing, and interactive workflow. Essentially, DCV processes images to extract specific information that is meaningful within a business context.",
"keywords": [
"JavaScript barcode",
"barcode",
"PDF417",
"QRCode",
"Aztec Code",
"SDK",
"Linear barcode",
"1D barcode"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"sideEffects": false,
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "rollup -c",
"test": "node ./test/test.js"
},
"author": {
"name": "Dynamsoft",
"url": "https://www.dynamsoft.com"
},
"maintainers": [
{
"name": "Dynamsoft",
"email": "[email protected]"
}
],
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://www.dynamsoft.com/capture-vision/docs/core/",
"repository": {
"type": "git",
"url": "git+https://github.com/dynamsoft/capture-vision-nodejs-samples.git"
},
"dependencies": {
"koffi": "^2.9.1"
},
"peerDependencies": {
"dynamsoft-capture-vision-for-node-model": "0.0.1"
},
"peerDependenciesMeta": {
"dynamsoft-capture-vision-for-node-model": {
"optional": true
}
},
"optionalDependencies": {
"dynamsoft-capture-vision-for-node-lib-darwin-universal2": "0.0.3",
"dynamsoft-capture-vision-for-node-lib-linux-arm64": "0.0.3",
"dynamsoft-capture-vision-for-node-lib-linux-x64": "0.0.5",
"dynamsoft-capture-vision-for-node-lib-win32-ia32": "0.0.3",
"dynamsoft-capture-vision-for-node-lib-win32-x64": "0.0.3"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.9.0",
"rollup": "^4.26.0",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.8.1",
"typescript": "^5.6.3"
},
"files": [
"/dist",
"/Templates",
"/ParserResources",
"/README.md"
]
}