assemblyai 4.4.2-beta.2 → 4.4.2-beta.4

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 +6 -25
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "assemblyai",
3
- "version": "4.4.2-beta.2",
3
+ "version": "4.4.2-beta.4",
4
4
  "description": "The AssemblyAI JavaScript SDK provides an easy-to-use interface for interacting with the AssemblyAI API, which supports async and real-time transcription, as well as the latest LeMUR models.",
5
5
  "engines": {
6
6
  "node": ">=18"
@@ -17,16 +17,8 @@
17
17
  "default": "./dist/deno.mjs"
18
18
  },
19
19
  "workerd": "./dist/index.mjs",
20
- "browser": {
21
- "types": "./dist/index.d.ts",
22
- "import": "./dist/browser.mjs",
23
- "require": "./dist/browser.cjs"
24
- },
25
- "react-native": {
26
- "types": "./dist/index.d.ts",
27
- "import": "./dist/browser.mjs",
28
- "require": "./dist/browser.cjs"
29
- },
20
+ "browser": "./dist/browser.mjs",
21
+ "react-native": "./dist/browser.mjs",
30
22
  "node": {
31
23
  "types": "./dist/index.d.ts",
32
24
  "import": "./dist/node.mjs",
@@ -36,18 +28,6 @@
36
28
  "require": "./dist/index.cjs",
37
29
  "default": "./dist/index.cjs"
38
30
  },
39
- "./browser": {
40
- "types": "./dist/index.d.ts",
41
- "import": "./dist/browser.mjs",
42
- "require": "./dist/browser.cjs",
43
- "default": "./dist/browser.cjs"
44
- },
45
- "./react-native": {
46
- "types": "./dist/index.d.ts",
47
- "import": "./dist/browser.mjs",
48
- "require": "./dist/browser.cjs",
49
- "default": "./dist/browser.cjs"
50
- },
51
31
  "./package.json": "./package.json"
52
32
  },
53
33
  "imports": {
@@ -68,10 +48,11 @@
68
48
  }
69
49
  },
70
50
  "type": "commonjs",
51
+ "react-native": "./dist/browser.mjs",
52
+ "browser": "./dist/browser.mjs",
71
53
  "main": "./dist/index.cjs",
72
54
  "require": "./dist/index.cjs",
73
55
  "module": "./dist/index.mjs",
74
- "react-native": "./dist/index.mjs",
75
56
  "types": "./dist/index.d.ts",
76
57
  "typings": "./dist/index.d.ts",
77
58
  "repository": {
@@ -152,4 +133,4 @@
152
133
  "dependencies": {
153
134
  "ws": "^8.16.0"
154
135
  }
155
- }
136
+ }