@rn-bridge-tools/expo 0.0.1 → 0.0.3

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 +11 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rn-bridge-tools/expo",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Expo/React Native WebView bridge component and handlers for bridge-tools",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -21,16 +21,8 @@
21
21
  "files": [
22
22
  "dist"
23
23
  ],
24
- "scripts": {
25
- "build": "tsup",
26
- "dev": "tsup --watch",
27
- "test": "vitest run",
28
- "lint": "eslint src/",
29
- "typecheck": "tsc --noEmit",
30
- "clean": "rm -rf dist"
31
- },
32
24
  "dependencies": {
33
- "@rn-bridge-tools/core": "workspace:*"
25
+ "@rn-bridge-tools/core": "0.0.3"
34
26
  },
35
27
  "peerDependencies": {
36
28
  "@react-native-async-storage/async-storage": "*",
@@ -100,9 +92,16 @@
100
92
  "@types/react": "^19.0.0",
101
93
  "@webview-bridge/react-native": "^1.7.0",
102
94
  "eslint": "^9.0.0",
103
- "react": "^18.3.0",
104
95
  "tsup": "^8.3.0",
105
96
  "typescript": "^5.7.0",
106
97
  "vitest": "^2.1.0"
98
+ },
99
+ "scripts": {
100
+ "build": "tsup",
101
+ "dev": "tsup --watch",
102
+ "test": "vitest run",
103
+ "lint": "eslint src/",
104
+ "typecheck": "tsc --noEmit",
105
+ "clean": "rm -rf dist"
107
106
  }
108
- }
107
+ }