-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
178 lines (178 loc) · 5.04 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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"name": "vscode-grug",
"displayName": "Grug Brained Developer",
"publisher": "shouples-dev",
"description": "A layman's chat participant, helping to think like the self-aware smol brained",
"version": "0.1.2",
"icon": "resources/grug.png",
"repository": {
"type": "git",
"url": "https://github.com/shouples/vscode-grug-chat.git"
},
"homepage": "https://grugbrain.dev/",
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"AI",
"Chat"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"chatParticipants": [
{
"id": "vscode-grug",
"fullName": "The Grug Brained Developer",
"name": "Grug",
"description": "A layman's chat participant, helping to think like the self-aware smol brained",
"isSticky": true,
"commands": [
{
"name": "thoughts",
"description": "Get a random thought from Grug Brained Developer based on references to https://grugbrain.dev/"
},
{
"name": "agile",
"description": "Discuss Agile with Grug"
},
{
"name": "APIs",
"description": "Discuss APIs with Grug"
},
{
"name": "chestertonsFence",
"description": "Discuss Chesterton's Fence with Grug"
},
{
"name": "closures",
"description": "Discuss Closures with Grug"
},
{
"name": "concurrency",
"description": "Discuss Concurrency with Grug"
},
{
"name": "DRY",
"description": "Discuss DRY with Grug"
},
{
"name": "eternalEnemyComplexity",
"description": "Discuss Complexity with Grug"
},
{
"name": "expressionComplexity",
"description": "Discuss Expression Complexity with Grug"
},
{
"name": "factoringYourCode",
"description": "Discuss Factoring Your Code with Grug"
},
{
"name": "fads",
"description": "Discuss Fads with Grug"
},
{
"name": "fearOfLookingDumb",
"description": "Discuss Fear of Looking Dumb with Grug"
},
{
"name": "frontEndDevelopment",
"description": "Discuss Front End Development with Grug"
},
{
"name": "imposterSyndrome",
"description": "Discuss Imposter Syndrome with Grug"
},
{
"name": "introduction",
"description": "Discuss Introduction with Grug"
},
{
"name": "logging",
"description": "Discuss Logging with Grug"
},
{
"name": "microservices",
"description": "Discuss Microservices with Grug"
},
{
"name": "optimizing",
"description": "Discuss Optimizing with Grug"
},
{
"name": "parsing",
"description": "Discuss Parsing with Grug"
},
{
"name": "refactoring",
"description": "Discuss Refactoring with Grug"
},
{
"name": "sayingNo",
"description": "Discuss Saying No with Grug"
},
{
"name": "sayingOk",
"description": "Discuss Saying Ok with Grug"
},
{
"name": "separationOfConcerns",
"description": "Discuss Separation of Concerns with Grug"
},
{
"name": "testing",
"description": "Discuss Testing with Grug"
},
{
"name": "tools",
"description": "Discuss Tools with Grug"
},
{
"name": "typeSystems",
"description": "Discuss Type Systems with Grug"
},
{
"name": "visitorPattern",
"description": "Discuss Visitor Pattern with Grug"
}
],
"disambiguation": []
}
],
"configuration": {
"title": "Grug",
"properties": {
"grug.languageModel": {
"type": "string",
"enum": [
"gpt-4o",
"gpt-4",
"gpt-3.5"
],
"default": "gpt-4o",
"description": "The language model to use for the Grug Copilot chat participant."
}
}
}
},
"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": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.93.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"typescript": "^5.4.5",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.3.9"
}
}