Files
claude-code-chat/package.json
andrepimenta cd449ac81a Update version
2025-06-16 19:12:14 +01:00

167 lines
3.7 KiB
JSON

{
"name": "claude-code-chat",
"displayName": "Claude Code Chat",
"description": "Beautiful Claude Code Chat Interface for VS Code",
"version": "0.0.6",
"publisher": "AndrePimenta",
"author": "Andre Pimenta",
"repository": {
"type": "git",
"url": "https://github.com/andrepimenta/claude-code-chat"
},
"license": "SEE LICENSE IN LICENSE",
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Other",
"AI",
"Chat",
"Machine Learning",
"Snippets",
"Programming Languages",
"Education",
"Testing",
"Formatters",
"Linters"
],
"keywords": [
"claude code",
"code explanation",
"code generation",
"code summary",
"code transform",
"vibe coding",
"prompt language",
"copilot",
"claude",
"ai",
"assistant",
"chatbot",
"chat",
"anthropic",
"code",
"help",
"programming",
"development",
"productivity"
],
"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.95.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"
}
}