@open-gitagent/voice 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,57 @@
1
+ {
2
+ "name": "@open-gitagent/voice",
3
+ "version": "1.0.0",
4
+ "description": "Voice mode + web UI for @open-gitagent/gitagent. OpenAI Realtime + Gemini Live adapters, Composio integration, file browser, scheduler UI.",
5
+ "author": "shreyaskapale",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/open-gitagent/voice"
10
+ },
11
+ "homepage": "https://github.com/open-gitagent/voice",
12
+ "keywords": [
13
+ "ai",
14
+ "agent",
15
+ "voice",
16
+ "openai-realtime",
17
+ "gemini-live",
18
+ "gitagent"
19
+ ],
20
+ "type": "module",
21
+ "files": [
22
+ "dist",
23
+ "README.md",
24
+ "LICENSE"
25
+ ],
26
+ "main": "./dist/index.js",
27
+ "types": "./dist/index.d.ts",
28
+ "exports": {
29
+ ".": {
30
+ "import": "./dist/index.js",
31
+ "types": "./dist/index.d.ts"
32
+ }
33
+ },
34
+ "scripts": {
35
+ "build": "tsc && cp src/ui.html dist/ui.html",
36
+ "dev": "tsc --watch",
37
+ "start": "node dist/server.js"
38
+ },
39
+ "engines": {
40
+ "node": ">=20"
41
+ },
42
+ "peerDependencies": {
43
+ "@open-gitagent/gitagent": "^2.0.0"
44
+ },
45
+ "dependencies": {
46
+ "ws": "^8.19.0",
47
+ "node-cron": "^3.0.3",
48
+ "baileys": "^7.0.0-rc.9"
49
+ },
50
+ "devDependencies": {
51
+ "@open-gitagent/gitagent": "^2.0.0",
52
+ "@types/node": "^22.0.0",
53
+ "@types/node-cron": "^3.0.11",
54
+ "@types/ws": "^8.18.1",
55
+ "typescript": "^5.7.0"
56
+ }
57
+ }