feat(phase3): VS Code Extension 스캐폴드 - bridge 연동 (approve/reject/text relay)
This commit is contained in:
56
extension/package.json
Normal file
56
extension/package.json
Normal file
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"name": "gravity-bridge",
|
||||
"displayName": "Gravity Bridge",
|
||||
"description": "Antigravity ↔ Discord 브리지 연동 확장",
|
||||
"version": "0.1.0",
|
||||
"publisher": "variet",
|
||||
"engines": {
|
||||
"vscode": "^1.80.0"
|
||||
},
|
||||
"categories": [
|
||||
"Other"
|
||||
],
|
||||
"activationEvents": [
|
||||
"onStartupFinished"
|
||||
],
|
||||
"main": "./out/extension.js",
|
||||
"scripts": {
|
||||
"compile": "tsc -p ./",
|
||||
"watch": "tsc -watch -p ./"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/vscode": "^1.80.0",
|
||||
"@types/node": "^20.0.0",
|
||||
"typescript": "^5.3.0"
|
||||
},
|
||||
"contributes": {
|
||||
"commands": [
|
||||
{
|
||||
"command": "gravityBridge.start",
|
||||
"title": "Gravity Bridge: Start"
|
||||
},
|
||||
{
|
||||
"command": "gravityBridge.stop",
|
||||
"title": "Gravity Bridge: Stop"
|
||||
},
|
||||
{
|
||||
"command": "gravityBridge.approve",
|
||||
"title": "Gravity Bridge: Approve Pending"
|
||||
},
|
||||
{
|
||||
"command": "gravityBridge.reject",
|
||||
"title": "Gravity Bridge: Reject Pending"
|
||||
}
|
||||
],
|
||||
"configuration": {
|
||||
"title": "Gravity Bridge",
|
||||
"properties": {
|
||||
"gravityBridge.bridgePath": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Bridge 디렉토리 경로 (기본: ~/.gemini/antigravity/bridge)"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user