-
-
Notifications
You must be signed in to change notification settings - Fork 520
/
package.json
108 lines (108 loc) · 2.4 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
{
"name": "react-native-keychain",
"version": "9.1.0",
"description": "Keychain Access for React Native",
"main": "./lib/commonjs/index.js",
"module": "./lib/module/index",
"types": "./lib/typescript/index.d.ts",
"react-native": "./src/index",
"source": "./src/index",
"files": [
"android",
"ios/RNKeychain.xcodeproj",
"ios/RNKeychainManager",
"lib",
"src",
"RNKeychain.podspec"
],
"scripts": {
"format": "prettier '{,typings/,KeychainExample/}*.{md,js,json,ts,tsx}' --write",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"typecheck": "tsc -p tsconfig.json",
"prepare": "bob build"
},
"workspaces": [
"KeychainExample",
"website"
],
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react",
"mobile",
"ios",
"android",
"keychain"
],
"author": {
"name": "Joel Arvidsson",
"email": "[email protected]"
},
"contributors": [
"Dorian Mazur <[email protected]> (https://github.com/DorianMazur)",
"Vojtech Novak <[email protected]> (https://github.com/vonovak)"
],
"homepage": "https://oblador.github.io/react-native-keychain",
"bugs": {
"url": "https://github.com/oblador/react-native-keychain/issues"
},
"typescript": {
"definition": "typings/react-native-keychain.d.ts"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git://github.com/oblador/react-native-keychain.git"
},
"license": "MIT",
"devDependencies": {
"@react-native/eslint-config": "^0.74.84",
"@react-native/typescript-config": "^0.74.84",
"eslint": "^8.46.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.0.3",
"react": "18.2.0",
"react-native": "0.74.5",
"react-native-builder-bob": "^0.30.0",
"typescript": "^5.2.2"
},
"volta": {
"node": "16.14.2"
},
"engines": {
"node": ">=18"
},
"codegenConfig": {
"name": "RNKeychainSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.oblador.keychain"
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"esm": true
}
],
[
"module",
{
"esm": true
}
],
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}