-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.7 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.7 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
118
119
120
121
122
123
124
125
126
{
"name": "claude-code-codex-extension-helper-extension",
"displayName": "Entegral Claude Code and Codex Helper For VS Code",
"description": "Instantly add file and code selection references to Claude Code's chat. Use toolbar buttons or right-click menus to insert @mentions without manual typing.",
"version": "0.0.1",
"publisher": "Entegral",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/entegral/claude-code-helper-for-vscode"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "claude-code-helper.addExplorerFileReference",
"title": "Add File to Claude Code",
"category": "Claude Code Helper"
},
{
"command": "claude-code-helper.addEditorSelectionReference",
"title": "Add Selection to Claude Code",
"category": "Claude Code Helper"
},
{
"command": "claude-code-helper.addExplorerFileToCodex",
"title": "Add File to Codex",
"category": "Claude Code Helper"
},
{
"command": "claude-code-helper.addEditorSelectionToCodex",
"title": "Add Selection to Codex",
"category": "Claude Code Helper"
}
],
"submenus": [
{
"id": "claude-code-helper.editorTitleMenu",
"label": "Claude Code Helper",
"icon": "$(mention)"
}
],
"menus": {
"explorer/context": [
{
"command": "claude-code-helper.addExplorerFileReference",
"when": "!explorerResourceIsRoot",
"group": "6_copypath@200"
},
{
"command": "claude-code-helper.addExplorerFileToCodex",
"when": "!explorerResourceIsRoot",
"group": "6_copypath@201"
}
],
"editor/context": [
{
"command": "claude-code-helper.addEditorSelectionReference",
"when": "editorHasSelection && !editorReadonly",
"group": "9_cutcopypaste@200"
},
{
"command": "claude-code-helper.addEditorSelectionToCodex",
"when": "editorHasSelection && !editorReadonly",
"group": "9_cutcopypaste@201"
}
],
"editor/title": [
{
"submenu": "claude-code-helper.editorTitleMenu",
"when": "resourceScheme == file",
"group": "navigation@1"
}
],
"claude-code-helper.editorTitleMenu": [
{
"command": "claude-code-helper.addExplorerFileReference",
"when": "resourceScheme == file",
"group": "1_file@1"
},
{
"command": "claude-code-helper.addEditorSelectionReference",
"when": "editorHasSelection && !editorReadonly",
"group": "1_file@2"
},
{
"command": "claude-code-helper.addExplorerFileToCodex",
"when": "resourceScheme == file",
"group": "2_codex@1"
},
{
"command": "claude-code-helper.addEditorSelectionToCodex",
"when": "editorHasSelection && !editorReadonly",
"group": "2_codex@2"
}
]
},
"configuration": {
"title": "Claude Code Helper",
"properties": {
"claudeCodeHelper.showStatusBarMessage": {
"type": "boolean",
"default": true,
"description": "Show status bar message after copying file reference to clipboard."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^20.x",
"@types/vscode": "^1.85.0",
"typescript": "^5.3.0"
}
}