-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.38 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.38 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
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "autopilot-ai",
"displayName": "AutoPilot AI",
"description": "**AutoPilot AI Searchbar** is a powerful Visual Studio Code extension that integrates OpenAI's GPT models into your coding environment. It provides an intuitive chat interface and context-aware code actions to enhance your development workflow. With features like code explanation, refactoring, and documentation, it's designed to streamline your coding experience directly within VSCode.",
"version": "0.0.1",
"engines": {
"vscode": "^1.100.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "autopilot-searchbar.search",
"title": "Open AutoPilot AI"
},
{
"command": "autopilot-searchbar.logout",
"title": "Logout"
},
{
"command": "autopilot-searchbar.explainSelection",
"title": "Explain with AutoPilot AI"
},
{
"command": "autopilot-searchbar.applyCode",
"title": "Apply Code from AutoPilot AI"
},
{
"command": "autopilot-searchbar.refactorCode",
"title": "Refactor Code with AutoPilot AI"
},
{
"command": "autopilot-searchbar.documentSelection",
"title": "Document It with AutoPilot AI"
}
],
"menus": {
"editor/context": [
{
"command": "autopilot-searchbar.explainSelection",
"when": "editorHasSelection",
"group": "navigation"
},
{
"command": "autopilot-searchbar.refactorCode",
"when": "editorHasSelection",
"group": "navigation"
},
{
"command": "autopilot-searchbar.documentSelection",
"when": "editorHasSelection",
"group": "navigation"
}
]
},
"views": {
"explorer": [
{
"type": "webview",
"id": "autopilot-searchbar.chatView",
"name": "AutoPilot AI"
}
]
},
"configuration": {
"type": "object",
"title": "AutoPilot AI Searchbar Configuration",
"properties": {
"autopilot.apiKey": {
"type": "string",
"default": "",
"description": "Your OpenAI API key used for Collab AI Search Bar."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.9",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.100.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2",
"esbuild": "^0.25.4",
"eslint": "^9.25.1",
"npm-run-all": "^4.1.5",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"axios": "^1.9.0",
"highlight.js": "^11.11.1",
"jsonwebtoken": "^9.0.2",
"marked": "^15.0.12",
"openai": "^4.103.0"
}
}