-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.48 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
{
"name": "bigo",
"displayName": "BigO",
"description": "Calculate Time Complexity In VS Code using GPT-3",
"icon": "images/text_effect_207.png",
"repository": {
"type": "git",
"url": "https://github.com/miranamer/BigO-vsCodeExtension"
},
"publisher": "MiranAmer",
"version": "2.2.0",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:bigo.copyText",
"onCommand:bigo.optimizeCode",
"onCommand:bigo.readableCode",
"onCommand:bigo.debugCode",
"onCommand:bigo.convertCode",
"onCommand:bigo.solveCode",
"onCommand:bigo.setApiKey",
"onCommand:bigo.displayApiKey"
],
"main": "./extension.js",
"contributes": {
"configuration": [
{
"id": "bigo",
"title": "BigO Configuration",
"properties": {
"bigo.apiKey": {
"type": "object",
"default": {
"apiKey": ""
},
"description": "Your API Key for the BigO extension.",
"properties": {
"apiKey": {
"type": "string",
"description": "API Key"
}
}
}
}
}
],
"commands": [
{
"command": "bigo.setApiKey",
"title": "Set API Key"
},
{
"command": "bigo.copyText",
"title": "Get BigO() - Time Complexity"
},
{
"command": "bigo.optimizeCode",
"title": "Optimise Code Efficiency!"
},
{
"command": "bigo.readableCode",
"title": "Make Code More Readable"
},
{
"command": "bigo.debugCode",
"title": "Debug Code"
},
{
"command": "bigo.convertCode",
"title": "Convert Code To Another Language"
},
{
"command": "bigo.solveCode",
"title": "Solve A Programming Problem"
},
{
"command": "bigo.displayApiKey",
"title": "Display Current API Key"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.74.0",
"@vscode/test-electron": "^2.2.0",
"eslint": "^8.28.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"typescript": "^4.9.3"
},
"dependencies": {
"axios": "^1.2.3",
"clipboardy": "^3.0.0",
"openai": "^4.4.0"
}
}