-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·53 lines (53 loc) · 1.41 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
{
"name": "barcode-detection",
"type": "module",
"version": "1.0.0",
"description": "Polyfill for the Barcode Detection API based on Dynamsoft Barcode Reader or ZXing.",
"homepage": "https://github.com/xulihang/barcode-detector-polyfill/#readme",
"license": "MIT",
"author": {
"name": "Xu Lihang"
},
"bugs": {
"url": "https://github.com/xulihang/barcode-detector-polyfill/issues"
},
"files": [
"dist/*.js",
"dist/*.cjs",
"dist/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xulihang/barcode-detector-polyfill.git"
},
"source": "src/barcode-detector.ts",
"main": "./dist/barcode-detector.js",
"exports": {
"require": "./dist/barcode-detector.cjs",
"default": "./dist/barcode-detector.modern.js"
},
"unpkg": "./dist/barcode-detector.umd.js",
"amdName": "BarcodeDetectorPolyfill",
"scripts": {
"build": "microbundle build --globals dynamsoft-javascript-barcode=Dynamsoft.DBR,@zxing/library=ZXingBrowser",
"dev": "microbundle watch"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"microbundle": "^0.15.0"
},
"keywords": [
"barcode",
"barcode-detector",
"ean",
"datamatrix",
"pdf417",
"qrcode"
],
"dependencies": {
"@zxing/library": "0.20.0",
"dynamsoft-javascript-barcode": "9.6.20"
}
}