@revrag-ai/embed-react-native 1.0.9 → 1.0.10
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 +17 -16
- /package/{lib → dist}/commonjs/NativeEmbedReactNative.js +0 -0
- /package/{lib → dist}/commonjs/api/api.js +0 -0
- /package/{lib → dist}/commonjs/api/types/embed.api.types.js +0 -0
- /package/{lib → dist}/commonjs/components/Embed/EmbedAudioWave.js +0 -0
- /package/{lib → dist}/commonjs/components/Embed/EmbedButton.js +0 -0
- /package/{lib → dist}/commonjs/components/Embed/EmbedVoice.js +0 -0
- /package/{lib → dist}/commonjs/components/styles/EmbedButton.style.js +0 -0
- /package/{lib → dist}/commonjs/events/embed.event.js +0 -0
- /package/{lib → dist}/commonjs/hooks/initialize.js +0 -0
- /package/{lib → dist}/commonjs/hooks/initialize.livekit.js +0 -0
- /package/{lib → dist}/commonjs/hooks/types/initialize.types.js +0 -0
- /package/{lib → dist}/commonjs/hooks/types/voiceAgent.types.js +0 -0
- /package/{lib → dist}/commonjs/hooks/voiceagent.js +0 -0
- /package/{lib → dist}/commonjs/index.js +0 -0
- /package/{lib → dist}/commonjs/index.types.js +0 -0
- /package/{lib → dist}/commonjs/store/store.key.js +0 -0
- /package/{lib → dist}/commonjs/utils/reanimated.helper.js +0 -0
- /package/{lib → dist}/module/NativeEmbedReactNative.js +0 -0
- /package/{lib → dist}/module/api/api.js +0 -0
- /package/{lib → dist}/module/api/types/embed.api.types.js +0 -0
- /package/{lib → dist}/module/components/Embed/EmbedAudioWave.js +0 -0
- /package/{lib → dist}/module/components/Embed/EmbedButton.js +0 -0
- /package/{lib → dist}/module/components/Embed/EmbedVoice.js +0 -0
- /package/{lib → dist}/module/components/styles/EmbedButton.style.js +0 -0
- /package/{lib → dist}/module/events/embed.event.js +0 -0
- /package/{lib → dist}/module/hooks/initialize.js +0 -0
- /package/{lib → dist}/module/hooks/initialize.livekit.js +0 -0
- /package/{lib → dist}/module/hooks/types/initialize.types.js +0 -0
- /package/{lib → dist}/module/hooks/types/voiceAgent.types.js +0 -0
- /package/{lib → dist}/module/hooks/voiceagent.js +0 -0
- /package/{lib → dist}/module/index.js +0 -0
- /package/{lib → dist}/module/index.types.js +0 -0
- /package/{lib → dist}/module/store/store.key.js +0 -0
- /package/{lib → dist}/module/utils/reanimated.helper.js +0 -0
package/package.json
CHANGED
|
@@ -1,28 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revrag-ai/embed-react-native",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"source": "./src/index.tsx",
|
|
5
5
|
"description": "A powerful React Native library for integrating AI-powered voice agents into mobile applications. Features real-time voice communication, intelligent speech processing, customizable UI components, and comprehensive event handling for building conversational AI experiences.",
|
|
6
|
-
"main": "./
|
|
7
|
-
"module": "./
|
|
8
|
-
"types": "./
|
|
6
|
+
"main": "./dist/commonjs/index.js",
|
|
7
|
+
"module": "./dist/module/index.js",
|
|
8
|
+
"types": "./dist/typescript/src/index.d.ts",
|
|
9
9
|
"typesVersions": {
|
|
10
10
|
"*": {
|
|
11
11
|
"*": [
|
|
12
|
-
"./
|
|
12
|
+
"./dist/typescript/src/*"
|
|
13
13
|
]
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
18
|
+
"types": "./dist/typescript/src/index.d.ts",
|
|
19
|
+
"import": "./dist/module/index.js",
|
|
20
|
+
"require": "./dist/commonjs/index.js",
|
|
21
|
+
"default": "./dist/module/index.js"
|
|
21
22
|
},
|
|
22
23
|
"./package.json": "./package.json"
|
|
23
24
|
},
|
|
24
25
|
"files": [
|
|
25
|
-
"
|
|
26
|
+
"dist",
|
|
26
27
|
"android",
|
|
27
28
|
"ios",
|
|
28
29
|
"cpp",
|
|
@@ -30,9 +31,9 @@
|
|
|
30
31
|
"scripts",
|
|
31
32
|
"*.podspec",
|
|
32
33
|
"react-native.config.js",
|
|
33
|
-
"!
|
|
34
|
-
"!
|
|
35
|
-
"!
|
|
34
|
+
"!dist/**/*.js.map",
|
|
35
|
+
"!dist/**/*.test.*",
|
|
36
|
+
"!dist/**/*.spec.*",
|
|
36
37
|
"!ios/build",
|
|
37
38
|
"!android/build",
|
|
38
39
|
"!android/gradle",
|
|
@@ -50,7 +51,7 @@
|
|
|
50
51
|
"test": "jest",
|
|
51
52
|
"typecheck": "tsc",
|
|
52
53
|
"lint": "eslint \"**/*.{js,ts,tsx}\"",
|
|
53
|
-
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build
|
|
54
|
+
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build dist",
|
|
54
55
|
"prepare": "bob build",
|
|
55
56
|
"build": "bob build",
|
|
56
57
|
"fix-js": "node fix-js-files.js",
|
|
@@ -145,7 +146,7 @@
|
|
|
145
146
|
"preset": "react-native",
|
|
146
147
|
"modulePathIgnorePatterns": [
|
|
147
148
|
"<rootDir>/example/node_modules",
|
|
148
|
-
"<rootDir>/
|
|
149
|
+
"<rootDir>/dist/"
|
|
149
150
|
]
|
|
150
151
|
},
|
|
151
152
|
"commitlint": {
|
|
@@ -192,7 +193,7 @@
|
|
|
192
193
|
},
|
|
193
194
|
"eslintIgnore": [
|
|
194
195
|
"node_modules/",
|
|
195
|
-
"
|
|
196
|
+
"dist/"
|
|
196
197
|
],
|
|
197
198
|
"prettier": {
|
|
198
199
|
"quoteProps": "consistent",
|
|
@@ -203,7 +204,7 @@
|
|
|
203
204
|
},
|
|
204
205
|
"react-native-builder-bob": {
|
|
205
206
|
"source": "src",
|
|
206
|
-
"output": "
|
|
207
|
+
"output": "dist",
|
|
207
208
|
"targets": [
|
|
208
209
|
"codegen",
|
|
209
210
|
[
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|