-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (77 loc) · 1.78 KB
/
package.json
File metadata and controls
78 lines (77 loc) · 1.78 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
{
"name": "@thewoowon/google-rn",
"version": "0.1.1",
"description": "Lightweight, secure, and 100% free Google OAuth2 library for React Native",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": {
"name": "thewoowon",
"email": "dhsj8405@naver.com"
},
"license": "MIT",
"homepage": "https://github.com/thewoowon/google-rn#readme",
"repository": {
"type": "git",
"url": "https://github.com/thewoowon/google-rn.git"
},
"bugs": {
"url": "https://github.com/thewoowon/google-rn/issues"
},
"keywords": [
"react-native",
"google-signin",
"google-auth",
"oauth2",
"oauth",
"authentication",
"auth",
"open-source",
"google-oauth",
"ios",
"android",
"typescript",
"social-login",
"sign-in"
],
"files": [
"lib",
"src",
"android",
"ios",
"*.podspec",
"README.md",
"INSTALLATION.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf lib",
"prepare": "yarn build",
"typecheck": "tsc --noEmit",
"prepublishOnly": "yarn clean && yarn build && yarn typecheck",
"test": "echo \"No tests yet\" && exit 0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.73.0"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.23.0",
"react-native-get-random-values": "^1.11.0"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-native": "^0.73.0",
"typescript": "^5.3.0"
},
"react-native": "src/index.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}