-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
{
"name": "rc-qrcode-scan",
"version": "1.0.5",
"description": "react qrcode scan component",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"dev": "father dev",
"build": "father build",
"build:deps": "father prebundle",
"prepublishOnly": "father doctor && npm run build",
"prepare": "husky install",
"start:examples": "cd examples && npm start",
"link": "npm link && cd examples && npm link cjm-scan",
"unlink": "npm unlink && cd examples && npm unlink cjm-scan"
},
"keywords": [],
"authors": [
],
"engines": {
"node": ">=14.20.0"
},
"license": "MIT",
"files": [
"dist",
"compiled"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Fa-haxiki/rc-qrcode-scan"
},
"lint-staged": {
"src/**/*.{tsx,ts,css}": "prettier --write --ignore-unknown"
},
"peerDependencies": {
"react": ">=18.2",
"react-dom": ">=18.2"
},
"devDependencies": {
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"father": "^4.3.5",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"prettier": "3.0.3",
"sass": "^1.67.0"
},
"dependencies": {
"globalthis": "^1.0.3",
"html5-qrcode": "^2.3.8"
}
}