-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.44 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.44 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
{
"name": "fixgraph",
"publisher": "fixgraph",
"displayName": "FixGraph — Engineering Fix Search",
"description": "Search community-verified engineering fixes without leaving your editor",
"version": "0.0.1",
"engines": { "vscode": "^1.85.0" },
"categories": ["Other", "Debuggers"],
"keywords": ["debugging", "fixes", "errors", "search", "engineering", "mcp", "ai"],
"activationEvents": ["onStartupFinished"],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "fixgraph.search",
"title": "Search FixGraph",
"category": "FixGraph"
},
{
"command": "fixgraph.searchSelection",
"title": "Search FixGraph with Selection",
"category": "FixGraph"
}
],
"keybindings": [
{
"command": "fixgraph.search",
"key": "ctrl+shift+g",
"mac": "cmd+shift+g",
"when": "editorTextFocus"
}
],
"configuration": {
"title": "FixGraph",
"properties": {
"fixgraph.apiKey": {
"type": "string",
"default": "",
"description": "Optional API key for write access (get free at fixgraph.netlify.app)"
},
"fixgraph.autoSearch": {
"type": "boolean",
"default": false,
"description": "Automatically search FixGraph when cursor is on an error diagnostic"
},
"fixgraph.resultLimit": {
"type": "number",
"default": 5,
"minimum": 1,
"maximum": 20,
"description": "Number of search results to display"
},
"fixgraph.panelPosition": {
"type": "string",
"default": "beside",
"enum": ["beside", "active"],
"description": "Where to open the FixGraph results panel"
}
}
},
"menus": {
"editor/context": [
{
"command": "fixgraph.searchSelection",
"when": "editorHasSelection",
"group": "navigation@99"
}
]
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"typescript": "^5.3.0",
"@vscode/vsce": "^2.22.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jawdat6/fixgraph-vscode"
},
"homepage": "https://fixgraph.netlify.app"
}