-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
65121ff
commit 0c259e7
Showing
3 changed files
with
53 additions
and
15 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "vue-barcode-reader", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Vue barcodes and QR codes scanner", | ||
"main": "src/index.js", | ||
"scripts": { | ||
|
@@ -17,12 +17,12 @@ | |
"zxing" | ||
], | ||
"author": "olefirenko <[email protected]>", | ||
"license": "ISC", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/olefirenko/vue-barcode-reader/issues" | ||
}, | ||
"homepage": "https://github.com/olefirenko/vue-barcode-reader#readme", | ||
"dependencies": { | ||
"@zxing/library": "^0.15.1" | ||
"@zxing/library": "^0.19.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import ImageBarcodeReader from "./components/ImageBarcodeReader"; | ||
import StreamBarcodeReader from "./components/StreamBarcodeReader"; | ||
import ImageBarcodeReader from "./components/ImageBarcodeReader.vue"; | ||
import StreamBarcodeReader from "./components/StreamBarcodeReader.vue"; | ||
|
||
export { ImageBarcodeReader, StreamBarcodeReader }; |