-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.65 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
{
"name": "react-html5-qrcode-reader",
"version": "1.1.1",
"description": "A wrapper around html5-qrcode for react",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"scripts": {
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"build": "npm run lint:fix && npm run build:esm && npm run build:commonjs",
"build:esm": "tsc",
"publish": "npm run build && npm publish",
"build:commonjs": "tsc --module commonjs --outDir lib/cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/briosheje/react-html5-qrcode-reader.git"
},
"keywords": [
"react",
"html5",
"qrcode",
"reader"
],
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"author": "Marco Iamonte <[email protected]>",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/briosheje/react-html5-qrcode-reader/issues"
},
"homepage": "https://github.com/briosheje/react-html5-qrcode-reader#readme",
"devDependencies": {
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.4.4"
},
"files": [
"/lib"
]
}