-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
85 lines (85 loc) · 1.82 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
{
"name": "code-gpt-va",
"displayName": "Code-GPT — Make sense of any code, anytime. 🚀",
"description": "Provides you instant explanations for your code within the code editor using AI.",
"icon": "images/logo.png",
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"version": "0.0.6",
"publisher": "vaibhavacharya",
"author": {
"name": "Vaibhav Acharya",
"email": "[email protected]",
"url": "https://www.twitter.com/VaibhavAcharya_"
},
"engines": {
"vscode": "^1.74.0"
},
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/VaibhavAcharya/code-gpt"
},
"bugs": {
"url": "https://github.com/VaibhavAcharya/code-gpt/issues"
},
"categories": [
"Machine Learning",
"Other"
],
"keywords": [
"ai",
"code",
"explanation",
"comments"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.commentSelectedCode",
"title": "Code-GPT → Comment Selected Code"
},
{
"command": "extension.explainSelectedCode",
"title": "Code-GPT → Explain Selected Code"
}
],
"menus": {
"editor/context": [
{
"command": "extension.commentSelectedCode",
"when": "editorHasSelection"
},
{
"command": "extension.explainSelectedCode",
"when": "editorHasSelection"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/vscode": "1.74.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@octokit/rest": "^18.0.0",
"axios": "^1.3.2"
}
}