-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.48 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.48 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
{
"name": "grepal",
"displayName": "Grepal - The Snarky Debug Buddy",
"description": "Real-time debugging companion that roasts your code while fixing it using Cerebras LLMs",
"version": "0.0.1",
"publisher": "cerebras-devx",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other",
"Debuggers",
"Machine Learning"
],
"keywords": [
"debugging",
"ai",
"cerebras",
"real-time",
"code-analysis"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:typescript",
"onLanguage:python",
"onLanguage:java",
"onLanguage:cpp",
"onLanguage:c",
"onLanguage:go",
"onLanguage:rust"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "grepal.enable",
"title": "Enable Grepal",
"category": "Grepal"
},
{
"command": "grepal.disable",
"title": "Disable Grepal",
"category": "Grepal"
},
{
"command": "grepal.showInsights",
"title": "Show Analysis History",
"category": "Grepal"
}
],
"configuration": {
"title": "Grepal",
"properties": {
"grepal.enabled": {
"type": "boolean",
"default": true,
"description": "Enable/disable Grepal real-time analysis"
},
"grepal.snarkLevel": {
"type": "string",
"enum": ["mild", "medium", "savage"],
"default": "medium",
"description": "How snarky should Grepal be?"
},
"grepal.serverUrl": {
"type": "string",
"default": "http://localhost:8000",
"description": "Grepal Python server URL"
}
}
},
"menus": {
"commandPalette": [
{
"command": "grepal.enable",
"when": "!grepal.enabled"
},
{
"command": "grepal.disable",
"when": "grepal.enabled"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.74.0",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^1.6.0",
"ws": "^8.14.0"
}
}