@magic-sdk/react-native-bare 32.3.0-canary.964.19965738220.0 → 32.3.0-canary.970.19965747020.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-sdk/react-native-bare",
|
|
3
|
-
"version": "32.3.0-canary.
|
|
3
|
+
"version": "32.3.0-canary.970.19965747020.0",
|
|
4
4
|
"description": "Passwordless authentication for React Native (Bare).",
|
|
5
5
|
"author": "Magic Labs <team@magic.link> (https://magic.link/)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,8 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"homepage": "https://magic.link",
|
|
12
12
|
"files": [
|
|
13
|
-
"dist"
|
|
14
|
-
"*.podspec"
|
|
13
|
+
"dist"
|
|
15
14
|
],
|
|
16
15
|
"target": "node",
|
|
17
16
|
"main": "./dist/cjs/index.js",
|
|
@@ -19,7 +18,7 @@
|
|
|
19
18
|
"types": "./dist/types/index.d.ts",
|
|
20
19
|
"dependencies": {
|
|
21
20
|
"@aveq-research/localforage-asyncstorage-driver": "^3.0.1",
|
|
22
|
-
"@magic-sdk/provider": "31.3.0-canary.
|
|
21
|
+
"@magic-sdk/provider": "31.3.0-canary.970.19965747020.0",
|
|
23
22
|
"@magic-sdk/types": "^25.2.0",
|
|
24
23
|
"@react-native-async-storage/async-storage": "^2.1.2",
|
|
25
24
|
"@types/lodash": "^4.14.158",
|
|
@@ -56,5 +55,5 @@
|
|
|
56
55
|
"react-native-safe-area-context": ">=4.4.1",
|
|
57
56
|
"react-native-webview": ">=12.4.0"
|
|
58
57
|
},
|
|
59
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "47b22e809bc9dd57e6c0c35b20c307e8cf446f97"
|
|
60
59
|
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
require "json"
|
|
2
|
-
|
|
3
|
-
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
|
4
|
-
|
|
5
|
-
Pod::Spec.new do |s|
|
|
6
|
-
s.name = "MagicSdkReactNativeBare"
|
|
7
|
-
s.version = package["version"]
|
|
8
|
-
s.summary = package["description"]
|
|
9
|
-
s.description = <<-DESC
|
|
10
|
-
#{package["description"]}
|
|
11
|
-
DESC
|
|
12
|
-
s.homepage = package["homepage"]
|
|
13
|
-
s.license = package["license"]
|
|
14
|
-
s.author = package["author"]
|
|
15
|
-
s.platforms = { :ios => "13.4" }
|
|
16
|
-
s.source = { :git => package["repository"]["url"].gsub(/.git$/, ''), :tag => "#{s.version}" }
|
|
17
|
-
|
|
18
|
-
# This is a pure JavaScript package
|
|
19
|
-
# Native dependencies (react-native-keychain, react-native-device-crypto) will be
|
|
20
|
-
# automatically linked via React Native autolinking when this package is installed
|
|
21
|
-
|
|
22
|
-
s.dependency "React-Core"
|
|
23
|
-
end
|