forked from jamenamcinteer/react-qr-barcode-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "react-barcode-scanner-updated",
"version": "1.0.0",
"description": "A simple React Component using the client's webcam to read barcodes and QR codes. UPDATED to new dependencies.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Original author: Jamena McInteer (https://jamena.dev). Updated by: Dominik Myszkowski",
"files": [
"dist"
],
"scripts": {
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"build": "rm -rf dist && tsc --build tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dominik-myszkowski/react-barcode-scanner-updated.git"
},
"keywords": [
"react",
"webcam",
"barcode",
"scanner",
"qr",
"qrcode",
"camera"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jamenamcinteer/react-qr-barcode-scanner/issues"
},
"homepage": "https://github.com/jamenamcinteer/react-qr-barcode-scanner#readme",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@types/react": "^18.2.37",
"@zxing/library": "^0.20.0",
"react-webcam": "^7.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"typescript": "^5.2.2"
}
}