-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.14 KB
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
{
"name": "rn-qr-generator",
"version": "2.0.0",
"description": "React native QR Code generator / reader",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"files": [
"src",
"lib",
"android",
"ios",
"*.podspec",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"typescript": "tsc --noEmit",
"prepare": "bob build"
},
"keywords": [
"react-native",
"qr",
"QR Code",
"Decode QR",
"Generate QR",
"qrcode",
"Data Matrix",
"DataMatrix",
"qr generator",
"qrcode image",
"qr decode",
"detect QR code",
"scan QR code",
"react-native qrcode generator",
"detect qr code from image",
"turbomodule",
"new architecture"
],
"author": "Gevorg Gasparyan <gevorg994@gmail.com>",
"homepage": "https://github.com/gevgasparyan/rn-qr-generator#readme",
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": ">=0.71.0"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-native": "^0.72.0",
"react": "^18.2.0",
"react-native": "^0.73.0",
"react-native-builder-bob": "^0.23.0",
"typescript": "^5.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/gevgasparyan/rn-qr-generator.git"
},
"bugs": {
"url": "https://github.com/gevgasparyan/rn-qr-generator/issues"
},
"codegenConfig": {
"name": "RNQrGeneratorSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.gevorg.reactlibrary"
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}