@atzentis/auth-expo 0.0.2

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.
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @atzentis/auth-expo - React Native/Expo integration for Atzentis Auth SDK
3
+ *
4
+ * Provides:
5
+ * - Secure token storage via expo-secure-store
6
+ * - Native device signal collection
7
+ * - OAuth deep linking handler
8
+ * - Push notification token management
9
+ * - Phone sign-in screen
10
+ */
11
+ declare const VERSION = "0.0.1";
12
+
13
+ export { VERSION };
package/dist/index.js ADDED
@@ -0,0 +1,6 @@
1
+ // src/index.ts
2
+ var VERSION = "0.0.1";
3
+
4
+ export { VERSION };
5
+ //# sourceMappingURL=index.js.map
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";AAYO,IAAM,OAAA,GAAU","file":"index.js","sourcesContent":["/**\n * @atzentis/auth-expo - React Native/Expo integration for Atzentis Auth SDK\n *\n * Provides:\n * - Secure token storage via expo-secure-store\n * - Native device signal collection\n * - OAuth deep linking handler\n * - Push notification token management\n * - Phone sign-in screen\n */\n\n// Placeholder — services and hooks added in P11\nexport const VERSION = \"0.0.1\";\n"]}
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@atzentis/auth-expo",
3
+ "version": "0.0.2",
4
+ "type": "module",
5
+ "main": "./dist/index.js",
6
+ "types": "./dist/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./dist/index.js",
10
+ "types": "./dist/index.d.ts"
11
+ }
12
+ },
13
+ "sideEffects": false,
14
+ "files": [
15
+ "dist",
16
+ "README.md",
17
+ "LICENSE"
18
+ ],
19
+ "dependencies": {
20
+ "@atzentis/auth-sdk": "0.0.2"
21
+ },
22
+ "peerDependencies": {
23
+ "react": ">=18.0.0",
24
+ "react-native": ">=0.73.0",
25
+ "expo-device": ">=7.0.0",
26
+ "expo-application": ">=6.0.0",
27
+ "expo-secure-store": ">=14.0.0"
28
+ },
29
+ "devDependencies": {
30
+ "tsup": "^8.3.0",
31
+ "typescript": "^5.7.0",
32
+ "vitest": "^2.1.0"
33
+ },
34
+ "scripts": {
35
+ "build": "tsup",
36
+ "dev": "tsup --watch",
37
+ "test": "vitest run",
38
+ "test:watch": "vitest",
39
+ "type-check": "tsc --noEmit"
40
+ }
41
+ }