-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 1.86 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
{
"name": "goose-vscode",
"version": "0.0.19",
"publisher": "michaelneale",
"icon": "goose-icon.png",
"main": "./out/extension.js",
"scripts": {
"postinstall": "tsc",
"test": "tsc",
"watch": "tsc -w",
"package": "tsc && vsce package"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"description": "This is a vscode extension for goose: a programming agent that runs on your machine. Consider this extension experimental at this stage. You need goose-ai package installed for this to work. https://github.com/block-open-source/goose",
"devDependencies": {
"@types/node": "^22.3.0",
"@types/vscode": "^1.91.0",
"typescript": "^5.5.4",
"vsce": "^2.15.0"
},
"dependencies": {
"@vscode/l10n": "^0.0.18"
},
"engines": {
"vscode": "^1.91.1"
},
"repository": {
"type": "git",
"url": "https://github.com/block-open-source/goose"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Goose Settings",
"properties": {
"goose.defaultCommand": {
"type": "string",
"default": "goose session start",
"description": "Default command to be executed in Goose terminal."
},
"goose.openDiffEditorAfterGooseEdits": {
"type": "boolean",
"default": false,
"description": "Open the diff editor after Goose has made edits."
}
}
},
"commands": [
{
"command": "extension.sendToGoose",
"title": "🪿 ask goose 🪿"
},
{
"command": "extension.openGoose",
"title": "🪿 open goose 🪿"
}
],
"menus": {
"editor/context": [
{
"command": "extension.sendToGoose",
"when": "editorHasSelection",
"group": "navigation"
}
]
}
}
}