-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "@evellior/react-qr-scanner",
"version": "0.3.3",
"description": "A React Component implementation of Nimiq's QR Scanner",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"rollup": "rollup -c --inlineDynamicImports",
"demo": "npm start --prefix demo"
},
"keywords": [
"react",
"qr",
"qrcode",
"qr-scanner",
"qr-reader"
],
"author": "Evellior",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/react": "^18.0.15",
"rollup": "^2.76.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^18.2.0"
},
"dependencies": {
"qr-scanner": "^1.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Evellior/react-qr-scanner.git"
},
"bugs": {
"url": "https://github.com/Evellior/react-qr-scanner/issues"
},
"homepage": "https://github.com/Evellior/react-qr-scanner#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/evellior"
}
}