forked from olefirenko/vue-barcode-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "vue-barcode-reader",
"version": "1.0.3",
"description": "Vue barcodes and QR codes scanner",
"type": "module",
"files": ["dist"],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/style.css"
},
"scripts": {
"build": "vite build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/olefirenko/vue-barcode-reader.git"
},
"keywords": [
"vue",
"barcode",
"qrcode",
"zxing"
],
"author": "olefirenko <[email protected]>",
"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.19.1",
"vue": "^3.2.47"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"vite": "^4.1.4"
}
}