{ "name": "chat-agent-sample", "publisher": "vscode-samples", "displayName": "Copilot Chat Sample Agent", "description": "Sample chat agent extension, a trusty cat that will help you with your code.", "repository": { "type": "git", "url": "https://github.com/Microsoft/vscode-extension-samples" }, "version": "0.1.0", "engines": { "vscode": "^1.86.0" }, "extensionDependencies": [ "github.copilot-chat" ], "categories": [ "Other" ], "activationEvents": [ "onStartupFinished" ], "enabledApiProposals": [ "chatParticipant", "chatVariableResolver", "languageModels" ], "main": "./out/extension.js", "scripts": { "vscode:prepublish": "npm run compile", "compile": "tsc -p ./", "watch": "tsc -watch -p ./" }, "devDependencies": { "@types/node": "^20.5.9", "@types/vscode": "1.82.0", "eslint": "^7.22.0", "tslint": "^6.1.3", "typescript": "^4.0.3" } }