-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "react-qrcode-pix",
"version": "4.1.0",
"description": "Objetivo deste pacote é a de facilitar o recebimento de pagamentos com PIX em aplicações React",
"main": "dist/common/index.js",
"module": "dist/module/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "jest",
"build": "rimraf dist && tsc --project tsconfig.json && tsc --project tsconfig.m.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guilhermeasn/react-qrcode-pix.git"
},
"keywords": [
"react",
"qrcode",
"PIX"
],
"author": "Guilherme Augusto Silva Neves <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/guilhermeasn/react-qrcode-pix/issues"
},
"homepage": "https://github.com/guilhermeasn/react-qrcode-pix#readme",
"dependencies": {
"react-qrcode-pretty": "^1.3.1"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/react": "^18.0.15",
"@types/react-test-renderer": "^18.0.0",
"jest": "^28.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
}
}