-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.27 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
{
"name": "codex-context-bridge",
"displayName": "Codex Context Bridge",
"description": "Adds selected text from non-file VS Code editors to the OpenAI Codex chat thread.",
"version": "0.0.1",
"publisher": "mack1210",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/mack1210/codex-context-bridge.git"
},
"homepage": "https://github.com/mack1210/codex-context-bridge#readme",
"bugs": {
"url": "https://github.com/mack1210/codex-context-bridge/issues"
},
"engines": {
"vscode": "^1.98.0"
},
"categories": [
"AI",
"Chat",
"Notebooks"
],
"keywords": [
"codex",
"openai",
"vscode",
"jupyter",
"notebook",
"context",
"chat"
],
"icon": "docs/assets/icon.png",
"activationEvents": [
"onCommand:codexContextBridge.addSelectionToThread",
"onCommand:codexContextBridge.addActiveDocumentToThread"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "codexContextBridge.addSelectionToThread",
"title": "Codex Context Bridge: Add Selection To Thread"
},
{
"command": "codexContextBridge.addActiveDocumentToThread",
"title": "Codex Context Bridge: Add Active Document To Thread"
}
]
}
}