@privy-io/expo-native-extensions 0.0.3 → 0.0.4
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/README.md +0 -2
- package/package.json +20 -17
package/README.md
CHANGED
|
@@ -11,5 +11,3 @@ _Only on iOS_
|
|
|
11
11
|
## Installing
|
|
12
12
|
|
|
13
13
|
This is set as a peer dependency of `@privy-io/expo`, and then explicitly added as a dependency to the codebase that consumes `@privy-io/expo`.
|
|
14
|
-
|
|
15
|
-
There is currently an `example` app that pulls in the module for testing. In the future, once all functionality is exercised in the `tamagui` demo, this will be removed. For now, you can `cd example && npm run ios` to test an ios build including the native extensions.
|
package/package.json
CHANGED
|
@@ -1,10 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@privy-io/expo-native-extensions",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Privy's native extensions for the @privy-io/expo SDK.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"react-native",
|
|
7
|
+
"expo",
|
|
8
|
+
"expo-native-extensions",
|
|
9
|
+
"ExpoNativeExtensions"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/privy-io/expo-native-extensions#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/privy-io/expo-native-extensions/issues"
|
|
14
|
+
},
|
|
15
|
+
"repository": "https://github.com/privy-io/expo-native-extensions",
|
|
16
|
+
"license": "Apache-2.0",
|
|
17
|
+
"author": "privy.io",
|
|
5
18
|
"main": "dist/index.js",
|
|
6
19
|
"types": "dist/index.d.ts",
|
|
7
|
-
"license": "Apache-2.0",
|
|
8
20
|
"files": [
|
|
9
21
|
"dist/**/*",
|
|
10
22
|
"LICENSE",
|
|
@@ -14,25 +26,17 @@
|
|
|
14
26
|
"ios/**/*"
|
|
15
27
|
],
|
|
16
28
|
"scripts": {
|
|
17
|
-
"build": "
|
|
29
|
+
"build": "tsc",
|
|
18
30
|
"clean": "rm -rf dist",
|
|
19
|
-
"lint": "
|
|
31
|
+
"lint": "eslint",
|
|
20
32
|
"prepare": "npm run clean && npm run build"
|
|
21
33
|
},
|
|
22
|
-
"keywords": [
|
|
23
|
-
"react-native",
|
|
24
|
-
"expo",
|
|
25
|
-
"expo-native-extensions",
|
|
26
|
-
"ExpoNativeExtensions"
|
|
27
|
-
],
|
|
28
|
-
"repository": "https://github.com/privy-io/expo-native-extensions",
|
|
29
|
-
"bugs": {
|
|
30
|
-
"url": "https://github.com/privy-io/expo-native-extensions/issues"
|
|
31
|
-
},
|
|
32
|
-
"homepage": "https://github.com/privy-io/expo-native-extensions#readme",
|
|
33
34
|
"dependencies": {},
|
|
34
35
|
"devDependencies": {
|
|
35
|
-
"
|
|
36
|
+
"expo": "52.0.37",
|
|
37
|
+
"react": "18.3.1",
|
|
38
|
+
"react-native": "0.77.1",
|
|
39
|
+
"@types/react": "^18.3.1",
|
|
36
40
|
"expo-modules-core": "^1.12.19"
|
|
37
41
|
},
|
|
38
42
|
"peerDependencies": {
|
|
@@ -40,7 +44,6 @@
|
|
|
40
44
|
"react": "*",
|
|
41
45
|
"react-native": "*"
|
|
42
46
|
},
|
|
43
|
-
"author": "privy.io",
|
|
44
47
|
"publishConfig": {
|
|
45
48
|
"access": "public"
|
|
46
49
|
}
|