forked from Dynamsoft/barcode-reader-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.63 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.63 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
82
83
84
85
86
87
88
89
90
{
"name": "dynamsoft-javascript-barcode",
"version": "9.2.13",
"description": "Dynamsoft Barcode Reader JS is a recognition SDK which enables you to embed barcode reading functionality in your web, desktop, and mobile applications. With a few lines of JavaScript code, you can develop a robust application to scan a linear barcode, QR Code, DaraMatrix, PDF417, and Aztec Code.",
"files": [
"/dist",
"/Api Reference.url",
"/legal.txt",
"/samples.url"
],
"homepage": "https://www.dynamsoft.com/barcode-reader/sdk-javascript",
"main": "./dist/dbr.pure.js",
"module": "./dist/dbr.pure.esm.js",
"exports": {
"import": "./dist/dbr.pure.esm.js",
"require": "./dist/dbr.pure.js"
},
"sideEffects": false,
"types": "./dist/types/dbr.d.ts",
"author": {
"name": "Dynamsoft",
"url": "https://www.dynamsoft.com"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/dynamsoft/barcode-reader-javascript.git"
},
"maintainers": [
{
"name": "Dynamsoft",
"email": "support@dynamsoft.com"
}
],
"keywords": [
"HTML5 barcode",
"JavaScript barcode",
"Web barcode",
"barcode",
"PDF417",
"QRCode",
"Aztec Code",
"WebAssembly",
"SDK",
"Linear barcode",
"1D barcode"
],
"scripts": {
"build:doc": "typedoc",
"build-dev": "rollup -c --environment BUILD:development",
"build": "rollup -c --environment BUILD:production",
"test": "node ./samples/node/helloworld.js"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "13.0.5",
"@rollup/plugin-replace": "3.0.0",
"@rollup/plugin-typescript": "8.3.0",
"@types/node": "16.11.2",
"@types/node-fetch": "2.6.1",
"@types/node-localstorage": "1.3.0",
"detect-browser-node-ssr": "^2.0.0",
"dlsjs": "http://npm.dynamsoftwebtwain.com/dlsjs/-/dlsjs-1.0.22.tgz",
"dm-browser-info": "http://npm.dynamsoftwebtwain.com/dm-browser-info/-/dm-browser-info-1.0.5.tgz",
"dm-curscript-path": "http://npm.dynamsoftwebtwain.com/dm-curscript-path/-/dm-curscript-path-1.0.3.tgz",
"fs-extra": "8.1.0",
"mutable-promise": "1.1.13",
"rollup": "2.58.0",
"rollup-plugin-terser": "7.0.2",
"tslib": "2.3.1",
"typedoc": "0.22.6",
"typedoc-plugin-missing-exports": "0.22.3",
"typescript": "4.3.5"
},
"peerDependencies": {
"node-fetch": "^2.6.5",
"node-localstorage": "^2.2.1"
},
"peerDependenciesMeta": {
"node-fetch": {
"optional": true
},
"node-localstorage": {
"optional": true
}
},
"dependencies": {
"dm-howler": "^2.2.4",
"dynamsoft-camera-enhancer": "3.0.1"
}
}