-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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-qr-barcode-scanner",
"version": "2.0.0",
"description": "A simple React Component using the client's webcam to read barcodes and QR codes.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Jamena McInteer (https://jamena.dev)",
"files": [
"dist"
],
"scripts": {
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"build": "rm -rf dist && tsc --build tsconfig.json --declaration",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamenamcinteer/react-qr-barcode-scanner.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": "^19.0.2",
"@zxing/library": "^0.21.3",
"react-webcam": "^7.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"typescript": "^5.7.2"
}
}