-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1013 Bytes
/
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
{
"name": "react-qrcode-pretty",
"version": "1.3.3",
"description": "Qrcode generator for react apps with many customization options",
"keywords": [
"react",
"qrcode",
"pretty"
],
"main": "dist/common/index.js",
"module": "dist/module/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.json && tsc --project tsconfig.m.json"
},
"repository": "https://github.com/guilhermeasn/react-qrcode-pretty",
"author": "Guilherme Augusto Silva Neves <guilhermeasn@yahoo.com.br>",
"license": "MIT",
"bugs": {
"url": "https://github.com/guilhermeasn/react-qrcode-pretty"
},
"homepage": "https://github.com/guilhermeasn/react-qrcode-pretty#readme",
"devDependencies": {
"@types/react": "^18.0.17",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"dependencies": {
"qrcode-generator": "^1.4.4"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
}
}