@elizaos/capacitor-talkmode 1.0.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.
package/package.json ADDED
@@ -0,0 +1,83 @@
1
+ {
2
+ "name": "@elizaos/capacitor-talkmode",
3
+ "version": "1.0.0",
4
+ "description": "Runs voice conversations with live transcription, chat orchestration, and spoken replies.",
5
+ "keywords": [
6
+ "voice",
7
+ "speech-to-text",
8
+ "text-to-speech",
9
+ "conversation"
10
+ ],
11
+ "main": "./dist/plugin.cjs.js",
12
+ "module": "./dist/esm/index.js",
13
+ "types": "./dist/esm/index.d.ts",
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/esm/index.d.ts",
17
+ "import": "./dist/esm/index.js",
18
+ "require": "./dist/plugin.cjs.js"
19
+ },
20
+ "./package.json": "./package.json"
21
+ },
22
+ "unpkg": "dist/plugin.js",
23
+ "files": [
24
+ "android/src/main/",
25
+ "android/build.gradle",
26
+ "dist/",
27
+ "ios/Sources/",
28
+ "*.podspec"
29
+ ],
30
+ "scripts": {
31
+ "build": "npm run clean && tsc && rollup -c rollup.config.mjs",
32
+ "build:docs": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
33
+ "clean": "rimraf ./dist",
34
+ "prepublishOnly": "npm run build",
35
+ "docgen": "docgen --api TalkModePlugin --output-readme README.md --output-json dist/docs.json"
36
+ },
37
+ "author": "elizaOS",
38
+ "license": "MIT",
39
+ "dependencies": {
40
+ "@elizaos/app-core": "2.0.0-alpha.537"
41
+ },
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "https://github.com/elizaOS/eliza.git",
45
+ "directory": "apps/app/plugins/talkmode"
46
+ },
47
+ "capacitor": {
48
+ "ios": {
49
+ "src": "ios",
50
+ "podName": "ElizaCapacitorTalkMode"
51
+ },
52
+ "android": {
53
+ "src": "android"
54
+ }
55
+ },
56
+ "devDependencies": {
57
+ "@capacitor/cli": "^8.0.0",
58
+ "@capacitor/core": "^8.3.1",
59
+ "@capacitor/docgen": "^0.3.0",
60
+ "rimraf": "^6.0.0",
61
+ "rollup": "^4.60.2",
62
+ "typescript": "^6.0.0"
63
+ },
64
+ "peerDependencies": {
65
+ "@capacitor/core": "^8.3.1"
66
+ },
67
+ "publishConfig": {
68
+ "access": "public"
69
+ },
70
+ "elizaos": {
71
+ "platforms": [
72
+ "browser",
73
+ "node"
74
+ ],
75
+ "runtime": "both",
76
+ "platformDetails": {
77
+ "browser": "Support via Web Speech API for STT/TTS. No ElevenLabs streaming (CORS). System TTS fallback.",
78
+ "node": "Full support via Electrobun with ElevenLabs streaming TTS, native STT, and system TTS fallback",
79
+ "ios": true,
80
+ "android": true
81
+ }
82
+ }
83
+ }