-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.63 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
{
"name": "coderai-auto-bug-fixer",
"displayName": "CoderAI - Auto Bug Fixer",
"description": "Automatically detects terminal errors and warnings and fixes them using CoderAI, powered by the Professor-Raimal model.",
"version": "3.1.1",
"publisher": "RaimalRaja",
"icon": "media/icon.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Raimal-Raja-VScode-Extensions/CoderAI-Auto-Bug-Fixer-VScode-Extension.git"
},
"bugs": {
"url": "https://github.com/Raimal-Raja-VScode-Extensions/CoderAI-Auto-Bug-Fixer-VScode-Extension/issues"
},
"homepage": "https://github.com/Raimal-Raja-VScode-Extensions/CoderAI-Auto-Bug-Fixer-VScode-Extension#readme",
"galleryBanner": {
"color": "#1e1e28",
"theme": "dark"
},
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Other",
"Programming Languages"
],
"keywords": [
"error",
"warning",
"fix",
"AI",
"terminal",
"debug",
"coderai",
"professor-raimal"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "coderai.fixError",
"title": "✨ CoderAI: Fix This Error"
},
{
"command": "coderai.analyzeTerminal",
"title": "✨ CoderAI: Analyze Terminal"
},
{
"command": "coderai.fixFromLink",
"title": "✨ CoderAI: Fix From Terminal Link"
},
{
"command": "coderai.setApiKey",
"title": "✨ CoderAI: Set API Key"
}
],
"menus": {
"terminal/context": [
{
"command": "coderai.analyzeTerminal",
"group": "navigation"
}
]
},
"configuration": {
"title": "CoderAI",
"properties": {
"coderAI.autoDetect": {
"type": "boolean",
"default": true,
"description": "Automatically detect errors and warnings in the terminal and light up the status bar"
},
"coderAI.apiKey": {
"type": "string",
"default": "",
"markdownDescription": "Optional personal CoderAI API key. Not required for normal use — all requests are routed through the CoderAI backend, which holds the real provider key server-side."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/vscode": "1.93.0",
"@vscode/vsce": "^2.22.0",
"esbuild": "^0.28.1",
"typescript": "^5.0.0"
}
}