@almadar/mobile 1.4.0 → 1.8.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.
Files changed (1) hide show
  1. package/package.json +18 -25
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/mobile",
3
- "version": "1.4.0",
3
+ "version": "1.8.0",
4
4
  "description": "React Native UI components for Almadar - extends @almadar/ui",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -47,27 +47,10 @@
47
47
  "files": [
48
48
  "dist"
49
49
  ],
50
- "scripts": {
51
- "build": "tsup && tsc --declaration --emitDeclarationOnly --outDir dist --skipLibCheck",
52
- "build:watch": "tsup --watch",
53
- "typecheck": "tsc --noEmit",
54
- "lint": "eslint src/",
55
- "start": "expo start",
56
- "start:storybook": "EXPO_PUBLIC_STORYBOOK=true expo start",
57
- "android": "expo start --android",
58
- "ios": "expo start --ios",
59
- "web": "expo start --web",
60
- "storybook": "EXPO_PUBLIC_STORYBOOK=true expo start",
61
- "storybook:ios": "EXPO_PUBLIC_STORYBOOK=true expo start --ios",
62
- "storybook:android": "EXPO_PUBLIC_STORYBOOK=true expo start --android",
63
- "storybook:web": "EXPO_PUBLIC_STORYBOOK=true expo start --web",
64
- "storybook-generate": "sb-rn-get-stories",
65
- "test": "vitest run --passWithNoTests",
66
- "test:web": "vitest run --passWithNoTests"
67
- },
68
50
  "dependencies": {
69
51
  "@almadar/core": "^10.0.0",
70
52
  "@almadar/patterns": ">=2.14.1",
53
+ "@almadar/runtime": "^6.24.0",
71
54
  "@almadar/ui": "^5.22.3",
72
55
  "@react-native-async-storage/async-storage": "2.2.0",
73
56
  "expo": "^54.0.0",
@@ -87,10 +70,6 @@
87
70
  },
88
71
  "devDependencies": {
89
72
  "@react-navigation/native": "^6.1.18",
90
- "@storybook/addon-ondevice-actions": "8.6.2",
91
- "@storybook/addon-ondevice-backgrounds": "8.6.2",
92
- "@storybook/addon-ondevice-controls": "8.6.2",
93
- "@storybook/react-native": "8.6.2",
94
73
  "@testing-library/react-native": "^13.3.3",
95
74
  "@types/react": "^19.0.0",
96
75
  "@typescript-eslint/eslint-plugin": "^7.0.0",
@@ -101,9 +80,11 @@
101
80
  "eslint": "^8.57.0",
102
81
  "jsdom": "^24.0.0",
103
82
  "react-test-renderer": "^19.2.4",
83
+ "esbuild": "^0.27.0",
104
84
  "tsup": "^8.0.0",
105
85
  "typescript": "^5.4.0",
106
- "vitest": "^1.0.0"
86
+ "vitest": "^1.0.0",
87
+ "turbo": "^2.8.17"
107
88
  },
108
89
  "publishConfig": {
109
90
  "registry": "https://registry.npmjs.org",
@@ -113,5 +94,17 @@
113
94
  "repository": {
114
95
  "type": "git",
115
96
  "url": "https://github.com/almadar-io/almadar-mobile.git"
97
+ },
98
+ "scripts": {
99
+ "build": "tsup && tsc --declaration --emitDeclarationOnly --outDir dist --skipLibCheck",
100
+ "build:watch": "tsup --watch",
101
+ "typecheck": "tsc --noEmit",
102
+ "lint": "eslint src/",
103
+ "start": "expo start",
104
+ "android": "expo start --android",
105
+ "ios": "expo start --ios",
106
+ "web": "expo start --web",
107
+ "test": "vitest run --passWithNoTests",
108
+ "test:web": "vitest run --passWithNoTests"
116
109
  }
117
- }
110
+ }