65 lines
1.9 KiB
JSON
65 lines
1.9 KiB
JSON
{
|
|
"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"
|
|
},
|
|
{
|
|
"command": "gravityBridge.connect",
|
|
"title": "Gravity Bridge: Connect Session"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"title": "Gravity Bridge",
|
|
"properties": {
|
|
"gravityBridge.bridgePath": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Bridge 디렉토리 경로 (기본: ~/.gemini/antigravity/bridge)"
|
|
},
|
|
"gravityBridge.projectName": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "프로젝트 이름 (기본: 워크스페이스 폴더명, 예: gravity_control)"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |