@otfdashkit/ui-native 0.1.1 → 0.1.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.
- package/LICENSE +1 -1
- package/dist/index.d.ts +17 -0
- package/dist/index.js +608 -106
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +539 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +13 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@otfdashkit/ui-native",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "OTF UI Native — Tamagui-powered component library for React Native + Expo. Same component API as @otfdashkit/ui (web) — port a screen by changing the import.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"otfdashkit",
|
|
@@ -15,16 +15,17 @@
|
|
|
15
15
|
"cross-platform"
|
|
16
16
|
],
|
|
17
17
|
"license": "MIT",
|
|
18
|
-
"author": "
|
|
19
|
-
"homepage": "https://
|
|
18
|
+
"author": "otf-kit <dave@otf-kit.dev>",
|
|
19
|
+
"homepage": "https://otf-kit.dev",
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|
|
22
|
-
"url": "https://github.com/otf-kit/sdk.git",
|
|
22
|
+
"url": "git+https://github.com/otf-kit/sdk.git",
|
|
23
23
|
"directory": "packages/ui-native"
|
|
24
24
|
},
|
|
25
25
|
"bugs": {
|
|
26
26
|
"url": "https://github.com/otf-kit/sdk/issues"
|
|
27
27
|
},
|
|
28
|
+
"funding": "https://otf-kit.dev/pricing",
|
|
28
29
|
"main": "dist/index.js",
|
|
29
30
|
"module": "dist/index.mjs",
|
|
30
31
|
"types": "dist/index.d.ts",
|
|
@@ -57,20 +58,28 @@
|
|
|
57
58
|
"typescript": "^5.0.0"
|
|
58
59
|
},
|
|
59
60
|
"peerDependencies": {
|
|
61
|
+
"@shopify/react-native-skia": ">=2.0.0",
|
|
60
62
|
"@tamagui/config": ">=1.100.0",
|
|
61
63
|
"@tamagui/core": ">=1.100.0",
|
|
62
64
|
"@tamagui/lucide-icons": ">=1.100.0",
|
|
63
65
|
"react": ">=18.0.0",
|
|
64
66
|
"react-native": ">=0.76.0",
|
|
65
67
|
"react-native-svg": ">=13.0.0",
|
|
68
|
+
"react-native-worklets": ">=0.5.0",
|
|
66
69
|
"tamagui": ">=1.100.0"
|
|
67
70
|
},
|
|
68
71
|
"peerDependenciesMeta": {
|
|
72
|
+
"@shopify/react-native-skia": {
|
|
73
|
+
"optional": true
|
|
74
|
+
},
|
|
69
75
|
"expo-router": {
|
|
70
76
|
"optional": true
|
|
71
77
|
},
|
|
72
78
|
"react-native-reanimated": {
|
|
73
79
|
"optional": true
|
|
80
|
+
},
|
|
81
|
+
"react-native-worklets": {
|
|
82
|
+
"optional": true
|
|
74
83
|
}
|
|
75
84
|
},
|
|
76
85
|
"publishConfig": {
|