-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
159 lines (159 loc) · 3.83 KB
/
Copy pathpackage.json
File metadata and controls
159 lines (159 loc) · 3.83 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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "mimocode-vscode",
"displayName": "MiMoCode",
"description": "A native MiMoCode workspace for Visual Studio Code.",
"version": "0.1.6",
"publisher": "mimocode-community",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GlowLED/MiMoCode-for-VsCode.git"
},
"private": true,
"files": [
"dist",
"out",
"assets",
"README.md",
"LICENSE"
],
"engines": {
"vscode": "^1.104.0"
},
"categories": [
"AI",
"Other"
],
"main": "./dist/extension.js",
"activationEvents": [
"onView:mimocode.chat"
],
"contributes": {
"viewsContainers": {
"secondarySidebar": [
{
"id": "mimocode",
"title": "MiMoCode",
"icon": "assets/activity-bar.svg"
}
]
},
"views": {
"mimocode": [
{
"type": "webview",
"id": "mimocode.chat",
"name": "MiMoCode"
}
]
},
"commands": [
{
"command": "mimocode.open",
"title": "Open MiMoCode",
"category": "MiMoCode",
"icon": "assets/activity-bar.svg"
},
{
"command": "mimocode.newSession",
"title": "New MiMoCode Session",
"category": "MiMoCode"
},
{
"command": "mimocode.addSelectionToPrompt",
"title": "Add Selection to MiMoCode Prompt",
"category": "MiMoCode"
},
{
"command": "mimocode.openTerminal",
"title": "Open MiMoCode Terminal",
"category": "MiMoCode"
},
{
"command": "mimocode.retryConnection",
"title": "Retry MiMoCode Connection",
"category": "MiMoCode"
},
{
"command": "mimocode.selectCliPath",
"title": "Select MiMoCode CLI Executable",
"category": "MiMoCode"
}
],
"menus": {
"editor/title": [
{
"command": "mimocode.open",
"group": "navigation"
}
],
"editor/context": [
{
"command": "mimocode.addSelectionToPrompt",
"when": "editorTextFocus",
"group": "navigation@9"
}
],
"commandPalette": [
{
"command": "mimocode.open"
},
{
"command": "mimocode.newSession"
},
{
"command": "mimocode.openTerminal"
},
{
"command": "mimocode.selectCliPath"
}
]
},
"configuration": {
"title": "MiMoCode",
"properties": {
"mimocode.cliPath": {
"type": "string",
"default": "mimo",
"description": "Path to the MiMoCode CLI executable."
},
"mimocode.serverStartupTimeout": {
"type": "number",
"default": 15000,
"minimum": 1000,
"maximum": 60000,
"description": "Maximum time in milliseconds to wait for the local MiMoCode service."
}
}
}
},
"scripts": {
"build": "pnpm run build:extension && pnpm run build:webview",
"build:extension": "node esbuild.js --production",
"build:webview": "vite build",
"watch": "concurrently \"pnpm run watch:extension\" \"pnpm run watch:webview\"",
"watch:extension": "node esbuild.js --watch",
"watch:webview": "vite build --watch",
"check": "tsc --noEmit",
"test": "vitest run",
"package": "pnpm run build && vsce package --no-dependencies"
},
"dependencies": {
"@mimo-ai/sdk": "0.1.8",
"lucide-solid": "^0.468.0",
"solid-js": "^1.9.10",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/vscode": "^1.94.0",
"@vscode/vsce": "^3.2.1",
"concurrently": "^9.1.0",
"esbuild": "^0.25.0",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vite-plugin-solid": "^2.11.0",
"vitest": "^3.0.0"
},
"packageManager": "pnpm@11.9.0"
}