-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 2.9 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-native-qrcode-composer",
"version": "0.2.0",
"scripts": {
"prepare": "bob build",
"release": "release-it",
"build": "tsc",
"lint": " eslint .",
"format": "prettier --write src",
"test": "jest"
},
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.tsx",
"types": "lib/typescript/index.d.ts",
"source": "src/index.tsx",
"type": "module",
"files": [
"lib",
"src",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"react-native",
"qrcode",
"qr code",
"svg",
"react-native-qrcode-svg",
"react-native-qrcode",
"qrcode-composer"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/afonsograca/react-native-qrcode-composer.git"
},
"homepage": "https://github.com/afonsograca/react-native-qrcode-composer#readme",
"bugs": {
"url": "https://github.com/afonsograca/react-native-qrcode-composer/issues"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"react": ">=17.0.1",
"react-native": ">=0.64.0",
"react-native-svg": ">=13.2.0"
},
"dependencies": {
"qrcode": "^1.5.3"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@eslint/js": "^9.3.0",
"@react-native/eslint-config": "^0.74.83",
"@release-it/keep-a-changelog": "^5.0.0",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^12.5.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.1",
"@types/react-test-renderer": "^18.3.0",
"babel-jest": "^29.7.0",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^0.5.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-testing-library": "^6.2.2",
"globals": "^15.3.0",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.2.5",
"react": ">=17.0.1",
"react-native": ">=0.64.0",
"react-native-builder-bob": "^0.23.2",
"react-native-svg": ">=13.2.0",
"react-test-renderer": "^18.3.1",
"release-it": "^17.3.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
],
"exclude": [
"**/{__tests__,__fixtures__,__mocks__}/**"
]
}
}