-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "full-duplex-code",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Talk to Claude Code while it works. A full-duplex voice companion powered by GPT Live 1.",
"engines": {
"node": ">=22"
},
"scripts": {
"start": "node src/cli.js",
"test": "node --test test/*.test.js",
"doctor": "node src/cli.js doctor",
"usage": "node src/cli.js usage",
"test:integration": "node scripts/test-integration.mjs",
"test:hooks": "node scripts/test-hook-context.mjs",
"test:updates": "node scripts/test-selective-updates.mjs",
"test:terminal": "node scripts/test-terminal-context.mjs",
"test:ui": "node scripts/test-ui-context.mjs",
"test:browser": "node scripts/test-browser.mjs",
"test:correction": "node scripts/test-correction.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"tiktoken": "^1.0.22",
"ws": "^8.21.3"
},
"devDependencies": {
"node-pty": "^1.1.0",
"playwright": "^1.63.0"
},
"license": "PolyForm-Noncommercial-1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/CakeCrusher/full_duplex_code.git"
},
"homepage": "https://github.com/CakeCrusher/full_duplex_code#readme",
"bugs": {
"url": "https://github.com/CakeCrusher/full_duplex_code/issues"
},
"keywords": [
"claude-code",
"voice",
"full-duplex",
"gpt-live",
"coding-agent"
]
}