Files
moeka-project/plugins/airi-plugin-vscode/package.json
T
2025-12-01 16:09:20 +08:00

68 lines
1.6 KiB
JSON

{
"publisher": "airi",
"name": "@proj-airi/airi-plugin-vscode",
"displayName": "AIRI",
"version": "0.8.0-alpha.6",
"private": true,
"description": "VSCode extension that shares your coding context with AIRI",
"categories": [
"Other"
],
"main": "./dist/extension.js",
"engines": {
"vscode": "^1.106.1"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "airi.enable",
"title": "AIRI: Enable"
},
{
"command": "airi.disable",
"title": "AIRI: Disable"
},
{
"command": "airi.status",
"title": "AIRI: Show Status"
}
],
"configuration": {
"title": "AIRI",
"properties": {
"airi.enabled": {
"type": "boolean",
"default": true,
"description": "Enable AIRI companion"
},
"airi.contextLines": {
"type": "number",
"default": 5,
"description": "Number of context lines to send (before and after current line)"
},
"airi.sendInterval": {
"type": "number",
"default": 3000,
"description": "Interval in milliseconds to send updates (0 for real-time)"
}
}
}
},
"scripts": {
"vscode:prepublish": "pnpm run build",
"build": "tsdown",
"dev": "tsdown --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@guiiai/logg": "catalog:",
"@proj-airi/server-sdk": "workspace:*"
},
"devDependencies": {
"@types/vscode": "^1.106.1"
}
}