@masumdev/rn-ui 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/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "@masumdev/rn-ui",
3
+ "version": "0.1.0",
4
+ "description": "A reusable React Native UI kit with typed theme tokens, light/dark mode, and composable core components.",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js",
13
+ "default": "./dist/index.js"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "scripts": {
22
+ "build": "tsup",
23
+ "dev": "tsup --watch",
24
+ "clean": "rm -rf dist"
25
+ },
26
+ "keywords": [
27
+ "react-native",
28
+ "expo",
29
+ "ui-kit",
30
+ "design-system",
31
+ "theme",
32
+ "dark-mode",
33
+ "components"
34
+ ],
35
+ "author": "Ma'sum",
36
+ "license": "MIT",
37
+ "devDependencies": {
38
+ "@gorhom/bottom-sheet": "^5.2.14",
39
+ "@types/react": "^18.0.0",
40
+ "react-native-calendars": "^1.1314.0",
41
+ "react-native-gesture-handler": "^3.0.2",
42
+ "react-native-reanimated": "^4.5.1",
43
+ "react-native-worklets": "^0.10.2",
44
+ "tsup": "^8.0.0",
45
+ "typescript": "^5.0.0"
46
+ },
47
+ "peerDependencies": {
48
+ "@gorhom/bottom-sheet": "*",
49
+ "react": ">=16",
50
+ "react-native": "*",
51
+ "react-native-calendars": "*",
52
+ "react-native-gesture-handler": "*",
53
+ "react-native-reanimated": "*",
54
+ "react-native-worklets": "*"
55
+ },
56
+ "publishConfig": {
57
+ "access": "public"
58
+ }
59
+ }