forked from Dynamsoft/barcode-reader-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.08 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
{
"name": "dynamsoft-javascript-barcode",
"version": "7.4.0-v1",
"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/dbr.js",
"/dist/dbr.mjs",
"/dist/dbr.browser.mjs",
"/dist/dbr-*.worker.js",
"/dist/dbr-*.wasm.js",
"/dist/dbr-*.wasm",
"/dist/dbr.d.ts",
"/dist/dbr.reference.d.ts",
"/dist/dbr.scanner.html"
],
"homepage": "https://www.dynamsoft.com/Products/barcode-recognition-javascript.aspx",
"main": "dist/dbr.js",
"module": "dist/dbr.mjs",
"browser": "dist/dbr.browser.mjs",
"types": "dist/dbr.d.ts",
"author": {
"name": "Dynamsoft",
"url": "https://www.dynamsoft.com"
},
"license": "SEE LICENSE IN LICENSE.txt",
"repository": {
"type": "git",
"url": "https://github.com/dynamsoft/javascript-barcode.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": "./node_modules/.bin/dts-bundle-generator -o dist/dbr.d.ts src/dbr.ts & webpack --config webpack.config.js",
"build:node": "webpack --config webpack.config.node.js",
"build:doc": "typedoc",
"test": "node test"
},
"devDependencies": {
"@types/node": "^13.9.8",
"declaration-bundler-webpack-plugin": "^1.0.3",
"dts-bundle-generator": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^4.1.2",
"fs-extra": "^8.1.0",
"localforage": "^1.7.3",
"ts-loader": "^6.2.2",
"typedoc": "^0.17.3",
"typescript": "^3.8.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-merge": "^4.2.2"
},
"dependencies": {}
}