forked from olefirenko/vue-barcode-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
{
"name": "vue-barcode-reader",
"version": "1.0.3",
"description": "Vue barcodes and QR codes scanner",
"type": "module",
"files": [
"dist"
],
"main": "./dist/vuebarcodereader.cjs",
"browser": "dist/vue3-simple-typeahead.umd.js",
"module": "./dist/vuebarcodereader.js",
"exports": {
".": {
"import": "./dist/vuebarcodereader.js",
"require": "./dist/vuebarcodereader.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"scripts": {
"build": "vite build",
"build:ssr": "cross-env NODE_ENV=production rollup --config rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config rollup.config.js --format iife",
"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",
"cross-env": "^7.0.3"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@vitejs/plugin-vue": "^4.5.2",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-vue": "^6.0.0",
"vite": "^5.0.10"
}
}