forked from codeflow-studio/claude-code-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 3.59 KB
/
package.json
File metadata and controls
135 lines (135 loc) · 3.59 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
127
128
129
130
131
132
133
134
135
{
"name": "claude-code-extension",
"displayName": "Claude Code Assistant for VSCode",
"description": "Unofficial integration of Anthropic's Claude Code AI assistant into VSCode",
"version": "0.0.8",
"publisher": "codeflow-studio",
"icon": "resources/claude-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/codeflow-studio/claude-code-chat"
},
"bugs": {
"url": "https://github.com/codeflow-studio/claude-code-chat/issues"
},
"homepage": "https://github.com/codeflow-studio/claude-code-chat#readme",
"license": "MIT",
"keywords": [
"ai",
"claude",
"code assistant",
"anthropic",
"coding",
"artificial intelligence",
"unofficial",
"codeflow"
],
"galleryBanner": {
"color": "#1E1E1E",
"theme": "dark"
},
"engines": {
"vscode": "^1.100.0"
},
"categories": [
"Other"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "claude-code-extension.launchClaudeCodeTerminal",
"title": "Claude Code: Launch Terminal",
"icon": "resources/claude-icon.svg"
},
{
"command": "claude-code-extension.restartClaudeCode",
"title": "Claude Code: Restart and Continue Last Session",
"icon": {
"light": "resources/restart-light.svg",
"dark": "resources/restart-dark.svg"
}
},
{
"command": "claude-code-extension.addSelectionToInput",
"title": "Add to Claude Code Input"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "claude-code-sidebar",
"title": "Claude Code",
"icon": "resources/claude-icon.svg"
}
]
},
"views": {
"claude-code-sidebar": [
{
"type": "webview",
"id": "claudeCodeInputView",
"name": "Terminal Input",
"contextualTitle": "Claude Terminal Input"
}
]
},
"menus": {
"view/title": [
{
"command": "claude-code-extension.launchClaudeCodeTerminal",
"group": "navigation",
"when": "view == claudeCodeInputView"
},
{
"command": "claude-code-extension.restartClaudeCode",
"group": "navigation",
"when": "view == claudeCodeInputView"
}
],
"editor/context": [
{
"command": "claude-code-extension.addSelectionToInput",
"when": "editorHasSelection",
"group": "navigation"
}
]
},
"configuration": {
"title": "Claude Code",
"properties": {
"claude-code-extension.autoStartOnActivation": {
"type": "boolean",
"default": true,
"description": "Automatically start Claude Code when the extension is activated"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"build": "npm run package && npm run vsix",
"vsix": "vsce package"
},
"devDependencies": {
"@types/node": "^22.15.18",
"@types/vscode": "^1.100.0",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vscode/vsce": "^2.24.0",
"css-loader": "^6.8.1",
"eslint": "^8.52.0",
"generator-code": "^1.11.9",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.0",
"typescript": "^5.8.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"yo": "^5.1.0"
}
}