@atzentis/crossmedia-expo 1.0.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 ADDED
@@ -0,0 +1,22 @@
1
+ # @atzentis/crossmedia-expo
2
+
3
+ ## 1.0.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`c9d8b81`](https://github.com/atzentis/crossmedia-sdk/commit/c9d8b81c4294d6d372492fd1486f9879b0f006e9) Thanks [@vassilibo](https://github.com/vassilibo)! - Initial public release of the Atzentis Crossmedia SDK.
8
+
9
+ Typed client for cross-network publishing (Instagram, TikTok, YouTube, Facebook, X, LinkedIn) and cross-network analytics.
10
+
11
+ - `@atzentis/crossmedia-sdk` — core HTTP client + typed error hierarchy
12
+ - `@atzentis/crossmedia-react` — provider + hooks
13
+ - `@atzentis/crossmedia-expo` — React Native / Expo surface
14
+ - `@atzentis/crossmedia-locales` — i18n locale packs
15
+
16
+ Consumed by Cyclus studio P11–P12 (greenfield, no local fallback).
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [[`c9d8b81`](https://github.com/atzentis/crossmedia-sdk/commit/c9d8b81c4294d6d372492fd1486f9879b0f006e9)]:
21
+ - @atzentis/crossmedia-sdk@1.0.0
22
+ - @atzentis/crossmedia-locales@1.0.0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Atzentis
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # @atzentis/crossmedia-expo
2
+
3
+ Expo / React Native integration for the Crossmedia SDK.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pnpm add @atzentis/crossmedia-expo @atzentis/crossmedia-sdk
9
+ ```
@@ -0,0 +1,2 @@
1
+ export { CrossmediaClient, VERSION } from '@atzentis/crossmedia-sdk';
2
+ export { CrossmediaLocalization } from '@atzentis/crossmedia-locales';
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export { CrossmediaClient, VERSION } from '@atzentis/crossmedia-sdk';
2
+ //# sourceMappingURL=index.js.map
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.js","sourcesContent":[]}
package/package.json ADDED
@@ -0,0 +1,115 @@
1
+ {
2
+ "name": "@atzentis/crossmedia-expo",
3
+ "version": "1.0.0",
4
+ "description": "Atzentis Crossmedia Expo — native screens, biometrics, and secure storage for React Native/Expo",
5
+ "keywords": [
6
+ "atzentis",
7
+ "crossmedia",
8
+ "expo",
9
+ "react-native",
10
+ "authentication",
11
+ "typescript"
12
+ ],
13
+ "license": "MIT",
14
+ "author": "Atzentis <dev@atzentis.com> (https://atzentis.com)",
15
+ "homepage": "https://github.com/atzentis/crossmedia-sdk/tree/main/packages/expo#readme",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/atzentis/crossmedia-sdk.git",
19
+ "directory": "packages/expo"
20
+ },
21
+ "type": "module",
22
+ "main": "./dist/index.js",
23
+ "types": "./dist/index.d.ts",
24
+ "exports": {
25
+ ".": {
26
+ "import": "./dist/index.js",
27
+ "types": "./dist/index.d.ts"
28
+ }
29
+ },
30
+ "sideEffects": false,
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "files": [
35
+ "dist",
36
+ "README.md",
37
+ "LICENSE",
38
+ "CHANGELOG.md"
39
+ ],
40
+ "dependencies": {
41
+ "@atzentis/crossmedia-locales": "1.0.0",
42
+ "@atzentis/crossmedia-sdk": "1.0.0"
43
+ },
44
+ "peerDependencies": {
45
+ "@better-auth/expo": ">=1.2.0",
46
+ "@expo/ui": ">=55.0.0",
47
+ "@hookform/resolvers": ">=3.3.0",
48
+ "@tanstack/react-query": ">=5.0.0",
49
+ "better-auth": ">=1.2.0",
50
+ "expo-application": ">=6.0.0",
51
+ "expo-device": ">=7.0.0",
52
+ "expo-haptics": ">=14.0.0",
53
+ "expo-local-authentication": ">=15.0.0",
54
+ "expo-localization": ">=16.0.0",
55
+ "expo-router": ">=4.0.0",
56
+ "expo-secure-store": ">=14.0.0",
57
+ "lucide-react-native": ">=0.400.0",
58
+ "react": ">=18.0.0",
59
+ "react-hook-form": ">=7.45.0",
60
+ "react-native": ">=0.76.0",
61
+ "react-native-reanimated": ">=3.0.0"
62
+ },
63
+ "peerDependenciesMeta": {
64
+ "@expo/ui": {
65
+ "optional": true
66
+ },
67
+ "expo-haptics": {
68
+ "optional": true
69
+ },
70
+ "expo-local-authentication": {
71
+ "optional": true
72
+ },
73
+ "react-native-reanimated": {
74
+ "optional": true
75
+ }
76
+ },
77
+ "devDependencies": {
78
+ "@better-auth/expo": "^1.2.0",
79
+ "@expo/ui": "^55.0.0",
80
+ "@hookform/resolvers": "^3.3.0",
81
+ "@tanstack/react-query": "^5.0.0",
82
+ "@testing-library/jest-dom": "^6.9.1",
83
+ "@testing-library/react": "^16.0.0",
84
+ "@testing-library/react-native": "^13.0.0",
85
+ "@testing-library/user-event": "^14.5.0",
86
+ "@types/react": "^19.0.0",
87
+ "@vitest/coverage-v8": "^2.1.0",
88
+ "better-auth": "^1.2.0",
89
+ "expo-application": "^6.0.0",
90
+ "expo-device": "^7.0.0",
91
+ "expo-haptics": "^14.0.0",
92
+ "expo-image-picker": "^16.0.0",
93
+ "expo-local-authentication": "^15.0.0",
94
+ "expo-localization": "^16.0.0",
95
+ "expo-router": "^4.0.0",
96
+ "expo-secure-store": "^14.0.0",
97
+ "jsdom": "^28.0.0",
98
+ "lucide-react-native": "^0.400.0",
99
+ "react": "^19.0.0",
100
+ "react-hook-form": "^7.45.0",
101
+ "react-native": "^0.76.0",
102
+ "tsup": "^8.3.0",
103
+ "typescript": "^5.7.0",
104
+ "vitest": "^2.1.0",
105
+ "@atzentis/crossmedia-locales": "1.0.0"
106
+ },
107
+ "scripts": {
108
+ "build": "tsup",
109
+ "dev": "tsup --watch",
110
+ "test": "vitest run",
111
+ "test:coverage": "vitest run --coverage",
112
+ "test:watch": "vitest",
113
+ "type-check": "tsc --noEmit"
114
+ }
115
+ }