@atzentis/auth-expo 0.0.16 → 0.1.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/CHANGELOG.md +33 -0
- package/LICENSE +1 -1
- package/README.md +195 -31
- package/dist/index.d.ts +425 -9
- package/dist/index.js +2747 -2
- package/dist/index.js.map +1 -1
- package/package.json +50 -18
package/package.json
CHANGED
|
@@ -1,16 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atzentis/auth-expo",
|
|
3
|
-
"version": "0.0
|
|
4
|
-
"description": "Atzentis Auth Expo — native
|
|
5
|
-
"keywords": [
|
|
6
|
-
"atzentis",
|
|
7
|
-
"auth",
|
|
8
|
-
"expo",
|
|
9
|
-
"react-native",
|
|
10
|
-
"biometrics",
|
|
11
|
-
"authentication",
|
|
12
|
-
"typescript"
|
|
13
|
-
],
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Atzentis Auth Expo — native auth screens, biometrics, and secure storage for React Native/Expo",
|
|
14
5
|
"license": "MIT",
|
|
15
6
|
"author": "Atzentis <dev@atzentis.com> (https://atzentis.com)",
|
|
16
7
|
"homepage": "https://github.com/atzentis/atzentis-auth-sdk/tree/main/packages/expo#readme",
|
|
@@ -29,25 +20,66 @@
|
|
|
29
20
|
}
|
|
30
21
|
},
|
|
31
22
|
"sideEffects": false,
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
32
26
|
"files": [
|
|
33
27
|
"dist",
|
|
34
28
|
"README.md",
|
|
35
|
-
"LICENSE"
|
|
29
|
+
"LICENSE",
|
|
30
|
+
"CHANGELOG.md"
|
|
36
31
|
],
|
|
37
32
|
"dependencies": {
|
|
38
|
-
"@atzentis/auth-
|
|
33
|
+
"@atzentis/auth-locales": "0.0.15",
|
|
34
|
+
"@atzentis/auth-sdk": "0.1.0"
|
|
39
35
|
},
|
|
40
36
|
"peerDependencies": {
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
37
|
+
"@better-auth/expo": ">=1.2.0",
|
|
38
|
+
"@expo/ui": ">=0.6.0",
|
|
39
|
+
"@hookform/resolvers": ">=3.3.0",
|
|
40
|
+
"@tanstack/react-query": ">=5.0.0",
|
|
41
|
+
"better-auth": ">=1.2.0",
|
|
44
42
|
"expo-application": ">=6.0.0",
|
|
45
|
-
"expo-
|
|
43
|
+
"expo-device": ">=7.0.0",
|
|
44
|
+
"expo-haptics": ">=14.0.0",
|
|
45
|
+
"expo-local-authentication": ">=15.0.0",
|
|
46
|
+
"expo-localization": ">=16.0.0",
|
|
47
|
+
"expo-router": ">=4.0.0",
|
|
48
|
+
"expo-secure-store": ">=14.0.0",
|
|
49
|
+
"lucide-react-native": ">=0.400.0",
|
|
50
|
+
"react": ">=18.0.0",
|
|
51
|
+
"react-hook-form": ">=7.45.0",
|
|
52
|
+
"react-native": ">=0.76.0",
|
|
53
|
+
"react-native-reanimated": ">=3.0.0"
|
|
54
|
+
},
|
|
55
|
+
"peerDependenciesMeta": {
|
|
56
|
+
"@expo/ui": {
|
|
57
|
+
"optional": true
|
|
58
|
+
},
|
|
59
|
+
"expo-haptics": {
|
|
60
|
+
"optional": true
|
|
61
|
+
},
|
|
62
|
+
"expo-local-authentication": {
|
|
63
|
+
"optional": true
|
|
64
|
+
},
|
|
65
|
+
"react-native-reanimated": {
|
|
66
|
+
"optional": true
|
|
67
|
+
}
|
|
46
68
|
},
|
|
47
69
|
"devDependencies": {
|
|
70
|
+
"@tanstack/react-query": "^5.0.0",
|
|
71
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
72
|
+
"@testing-library/react": "^16.0.0",
|
|
73
|
+
"@testing-library/react-native": "^13.0.0",
|
|
74
|
+
"@testing-library/user-event": "^14.5.0",
|
|
75
|
+
"@types/react": "^19.0.0",
|
|
76
|
+
"jsdom": "^28.0.0",
|
|
77
|
+
"react": "^19.0.0",
|
|
78
|
+
"react-native": "^0.76.0",
|
|
48
79
|
"tsup": "^8.3.0",
|
|
49
80
|
"typescript": "^5.7.0",
|
|
50
|
-
"vitest": "^2.1.0"
|
|
81
|
+
"vitest": "^2.1.0",
|
|
82
|
+
"@atzentis/auth-locales": "0.0.15"
|
|
51
83
|
},
|
|
52
84
|
"scripts": {
|
|
53
85
|
"build": "tsup",
|