-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.79 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "threevscode",
"displayName": "ThreeVSCode",
"description": "A 3D character that lives in your editor and speaks summaries of what Claude Code just did.",
"version": "0.2.23",
"license": "MIT",
"publisher": "embody",
"icon": "assets/ThreeVSLogo1024.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "threeVSCode.open",
"title": "ThreeVSCode: Open Character"
},
{
"command": "threeVSCode.enableVoice",
"title": "ThreeVSCode: Enable Voice for Claude Code"
},
{
"command": "threeVSCode.toggleVoice",
"title": "ThreeVSCode: Toggle Voice"
},
{
"command": "threeVSCode.restartClaudeTerminal",
"title": "ThreeVSCode: Restart Claude Terminal"
}
],
"configuration": {
"title": "ThreeVSCode",
"properties": {
"threeVSCode.voiceEnabled": {
"type": "boolean",
"default": true,
"description": "Speak Claude Code's responses through the character. Turn off to keep the hook installed but silence it."
}
}
}
},
"scripts": {
"build": "node esbuild.js",
"watch": "node esbuild.js --watch",
"vscode:prepublish": "node esbuild.js --production"
},
"dependencies": {
"kokoro-js": "^1.2.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"three": "^0.185.1"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/three": "^0.185.4",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.9.2",
"esbuild": "^0.28.2",
"typescript": "^5.6.3"
}
}