-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 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
{
"name": "coderjr",
"icon": "coderjr-logo.png",
"displayName": "Coder Jr",
"description": "Designed to streamline your coding workflow, this Visual Studio Code extension offers a range of helpful features and tools.",
"version": "1.0.3",
"author": "Prantik",
"repository": "https://github.com/prantiknoor/coderjr",
"publisher": "Prantik",
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"contributes": {
"keybindings": [
{
"command": "coderjr.command",
"key": "Shift+Enter",
"when": "editorTextFocus"
}
],
"configuration": {
"title": "Coder Jr",
"properties": {
"openAi.apiKey": {
"type": "string",
"description": "The API key for accessing OpenAI services"
}
}
}
},
"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.50.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.1"
}
}