-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
145 lines (145 loc) · 3.66 KB
/
package.json
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "bizarro-devin",
"displayName": "Bizarro Devin",
"description": "Unhinged creative coding AI agent",
"version": "0.0.1",
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "bizarro-devin.setupLayout",
"title": "Setup Layout",
"category": "Bizarro Devin"
},
{
"command": "bizarro-devin.setupFiles",
"title": "Setup Files",
"category": "Bizarro Devin"
},
{
"command": "bizarro-devin.runAIAgent",
"title": "Run AI Agent",
"category": "Bizarro Devin",
"icon": "$(debug-start)"
},
{
"command": "bizarro-devin.muteAIAgent",
"title": "Mute / Unmute AI Agent",
"category": "Bizarro Devin",
"icon": "$(mute)"
},
{
"command": "bizarro-devin.pauseAIAgent",
"title": "Pause AI Agent",
"category": "Bizarro Devin",
"icon": "$(debug-pause)"
},
{
"command": "bizarro-devin.listenToHuman",
"title": "Toggle Listening to Human",
"category": "Bizarro Devin",
"icon": "$(record)"
},
{
"command": "bizarro-devin.textualPrompt",
"title": "Textual Prompt",
"category": "Bizarro Devin"
},
{
"command": "bizarro-devin.refreshAgent",
"title": "Refresh AI Agent",
"category": "Bizarro Devin",
"icon": "$(sync)"
},
{
"command": "bizarro-devin.toggleContext",
"title": "Toggle including context in prompt",
"category": "Bizarro Devin",
"icon": "$(code-oss)"
},
{
"command": "bizarro-devin.toggleSpeed",
"title": "Toggle typing speed",
"category": "Bizarro Devin",
"icon": "$(watch)"
},
{
"command": "bizarro-devin.challengeBell",
"title": "Play the challenge bell!",
"category": "Bizarro Devin",
"icon": "$(bell)"
}
],
"menus": {
"editor/title": [
{
"command": "bizarro-devin.challengeBell",
"group": "navigation"
},
{
"command": "bizarro-devin.listenToHuman",
"group": "navigation"
},
{
"command": "bizarro-devin.refreshAgent",
"group": "navigation"
},
{
"command": "bizarro-devin.toggleContext",
"group": "navigation"
},
{
"command": "bizarro-devin.muteAIAgent",
"group": "navigation"
},
{
"command": "bizarro-devin.toggleSpeed",
"group": "navigation"
}
]
}
},
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"pretest": "npm run lint",
"test": "vscode-test",
"test-ai": "node ./src/experimental/test-provider.js"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.87.0",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.56.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"dependencies": {
"@google/generative-ai": "^0.3.1",
"@xenova/transformers": "^2.16.1",
"diff": "^5.2.0",
"elevenlabs": "^0.2.2",
"inquirer": "^8.0.0",
"node-record-lpcm16": "^1.0.1",
"ollama": "^0.5.0",
"openai": "^4.31.0",
"play-sound": "^1.1.6",
"playht": "^0.9.8",
"replicate": "^0.29.1",
"say": "^0.16.0",
"socket.io": "^4.7.5",
"speaker": "github:ItsJustMeChris/node-speaker#master",
"wavefile": "^11.0.0"
}
}