-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.79 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
{
"name": "@perryts/google-auth",
"version": "0.1.1",
"description": "Google Sign In bindings for the Perry TypeScript-to-native compiler. iOS/macOS via the GoogleSignIn SDK; Android via androidx.credentials Credential Manager.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PerryTS/google-auth.git"
},
"homepage": "https://github.com/PerryTS/google-auth#readme",
"bugs": {
"url": "https://github.com/PerryTS/perry/issues"
},
"keywords": [
"perry",
"perryts",
"google",
"google-sign-in",
"oauth",
"auth",
"ios",
"macos",
"android"
],
"main": "src/index.ts",
"types": "src/index.ts",
"files": [
"src/",
"crate-ios/Cargo.toml",
"crate-ios/build.rs",
"crate-ios/src/",
"crate-ios/swift/",
"crate-android/Cargo.toml",
"crate-android/src/",
"crate-android/kotlin/",
"crate-stub/Cargo.toml",
"crate-stub/src/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"perry": {
"nativeLibrary": {
"abiVersion": "0.5",
"functions": [
{ "name": "js_google_auth_sign_in", "params": [], "returns": "promise" },
{ "name": "js_google_auth_silent_sign_in", "params": [], "returns": "promise" },
{ "name": "js_google_auth_sign_out", "params": [], "returns": "promise" }
],
"targets": {
"ios": {
"crate": "crate-ios",
"lib": "libperry_google_auth.a",
"frameworks": ["Foundation", "UIKit"],
"optional_frameworks": ["GoogleSignIn"],
"frameworks_env": "PERRY_GOOGLE_SIGN_IN_FRAMEWORK_DIR"
},
"macos": {
"crate": "crate-ios",
"lib": "libperry_google_auth.a",
"frameworks": ["Foundation", "AppKit"],
"optional_frameworks": ["GoogleSignIn"],
"frameworks_env": "PERRY_GOOGLE_SIGN_IN_FRAMEWORK_DIR"
},
"android": {
"crate": "crate-android",
"lib": "libperry_google_auth.a",
"kotlin_sources": ["kotlin/PerryGoogleAuth.kt"],
"gradle_dependencies": [
"androidx.credentials:credentials:1.3.0",
"androidx.credentials:credentials-play-services-auth:1.3.0",
"com.google.android.libraries.identity.googleid:googleid:1.1.1",
"org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1"
]
},
"linux": { "crate": "crate-stub", "lib": "libperry_google_auth.a" },
"windows": { "crate": "crate-stub", "lib": "libperry_google_auth.a" },
"tvos": { "crate": "crate-stub", "lib": "libperry_google_auth.a" },
"watchos": { "crate": "crate-stub", "lib": "libperry_google_auth.a" },
"visionos":{ "crate": "crate-stub", "lib": "libperry_google_auth.a" }
}
}
}
}