@speakableio/core 0.1.26 → 0.1.27

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.
@@ -2260,4 +2260,4 @@ export {
2260
2260
  useSet,
2261
2261
  useSpeakableApi
2262
2262
  };
2263
- //# sourceMappingURL=index.web.mjs.map
2263
+ //# sourceMappingURL=index.web.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@speakableio/core",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/Speakable-io/speakable-core.git"
@@ -10,8 +10,8 @@
10
10
  "dev": "tsup src/index.ts --watch --dts --format esm,cjs --out-dir dist",
11
11
  "test": "vitest"
12
12
  },
13
- "react-native": "dist/index.native.js",
14
- "main": "dist/index.web.js",
13
+ "react-native": "./dist/index.native.js",
14
+ "main": "./dist/index.web.cjs",
15
15
  "devDependencies": {
16
16
  "@react-native-firebase/firestore": ">=21",
17
17
  "@react-native-firebase/functions": ">=21",
@@ -48,10 +48,11 @@
48
48
  },
49
49
  "exports": {
50
50
  ".": {
51
- "react-native": "./dist/index.native.js",
52
51
  "import": "./dist/index.web.js",
53
52
  "require": "./dist/index.web.cjs",
54
- "browser": "./dist/index.web.js"
53
+ "browser": "./dist/index.web.js",
54
+ "react-native": "./dist/index.native.js",
55
+ "default": "./dist/index.web.js"
55
56
  }
56
57
  },
57
58
  "bugs": {
@@ -66,7 +67,7 @@
66
67
  "publishConfig": {
67
68
  "access": "restricted"
68
69
  },
69
- "types": "dist/index.d.ts",
70
+ "types": "./dist/index.web.d.ts",
70
71
  "dependencies": {
71
72
  "dayjs": "^1.11.13"
72
73
  }
File without changes