mirror of
https://github.com/andrepimenta/claude-code-chat.git
synced 2026-01-23 18:07:41 +00:00
Init
This commit is contained in:
130
package.json
Normal file
130
package.json
Normal file
@@ -0,0 +1,130 @@
|
||||
{
|
||||
"name": "claude-code-chat",
|
||||
"displayName": "claude-code-chat",
|
||||
"description": "Beautiful Claude Code Chat Interface for VS Code",
|
||||
"version": "0.0.1",
|
||||
"engines": {
|
||||
"vscode": "^1.100.0"
|
||||
},
|
||||
"categories": [
|
||||
"Other"
|
||||
],
|
||||
"icon": "icon.png",
|
||||
"main": "./out/extension.js",
|
||||
"contributes": {
|
||||
"commands": [
|
||||
{
|
||||
"command": "claude-code-chat.openChat",
|
||||
"title": "Open Claude Code Chat",
|
||||
"category": "Claude Code Chat",
|
||||
"icon": "icon.png"
|
||||
}
|
||||
],
|
||||
"keybindings": [
|
||||
{
|
||||
"command": "claude-code-chat.openChat",
|
||||
"key": "ctrl+shift+c",
|
||||
"mac": "cmd+shift+c"
|
||||
}
|
||||
],
|
||||
"menus": {
|
||||
"commandPalette": [
|
||||
{
|
||||
"command": "claude-code-chat.openChat"
|
||||
}
|
||||
],
|
||||
"editor/context": [
|
||||
{
|
||||
"command": "claude-code-chat.openChat",
|
||||
"group": "claude@1",
|
||||
"when": "editorTextFocus"
|
||||
}
|
||||
],
|
||||
"editor/title": [
|
||||
{
|
||||
"command": "claude-code-chat.openChat",
|
||||
"group": "navigation@1",
|
||||
"when": "true"
|
||||
}
|
||||
],
|
||||
"editor/title/context": [
|
||||
{
|
||||
"command": "claude-code-chat.openChat",
|
||||
"group": "claude@1"
|
||||
}
|
||||
],
|
||||
"explorer/context": [
|
||||
{
|
||||
"command": "claude-code-chat.openChat",
|
||||
"group": "claude@1"
|
||||
}
|
||||
],
|
||||
"scm/title": [
|
||||
{
|
||||
"command": "claude-code-chat.openChat",
|
||||
"group": "navigation@1",
|
||||
"when": "true"
|
||||
}
|
||||
],
|
||||
"view/title": [
|
||||
{
|
||||
"command": "claude-code-chat.openChat",
|
||||
"group": "navigation@1",
|
||||
"when": "view == workbench.explorer.fileView"
|
||||
}
|
||||
],
|
||||
"touchBar": [
|
||||
{
|
||||
"command": "claude-code-chat.openChat",
|
||||
"group": "editing",
|
||||
"when": "true"
|
||||
}
|
||||
],
|
||||
"menuBar/file": [
|
||||
{
|
||||
"command": "claude-code-chat.openChat",
|
||||
"group": "1_new@1"
|
||||
}
|
||||
]
|
||||
},
|
||||
"views": {
|
||||
"claude-code-chat": [
|
||||
{
|
||||
"id": "claude-code-chat.chat",
|
||||
"name": "Claude Code Chat",
|
||||
"when": "true",
|
||||
"icon": "icon.png",
|
||||
"contextualTitle": "Claude Code Chat"
|
||||
}
|
||||
]
|
||||
},
|
||||
"viewsContainers": {
|
||||
"activitybar": [
|
||||
{
|
||||
"id": "claude-code-chat",
|
||||
"title": "Claude Code Chat",
|
||||
"icon": "icon.png"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"vscode:prepublish": "npm run compile",
|
||||
"compile": "tsc -p ./",
|
||||
"watch": "tsc -watch -p ./",
|
||||
"pretest": "npm run compile && npm run lint",
|
||||
"lint": "eslint src",
|
||||
"test": "vscode-test"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/vscode": "^1.100.0",
|
||||
"@types/mocha": "^10.0.10",
|
||||
"@types/node": "20.x",
|
||||
"@typescript-eslint/eslint-plugin": "^8.31.1",
|
||||
"@typescript-eslint/parser": "^8.31.1",
|
||||
"eslint": "^9.25.1",
|
||||
"typescript": "^5.8.3",
|
||||
"@vscode/test-cli": "^0.0.10",
|
||||
"@vscode/test-electron": "^2.5.2"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user