Files
vscode-extension-samples/chat-sample/package.json

66 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2023-11-13 16:30:27 +01:00
{
2024-02-22 15:51:21 +01:00
"name": "chat-sample",
2023-11-13 16:30:27 +01:00
"publisher": "vscode-samples",
2024-02-22 15:51:21 +01:00
"displayName": "Copilot Chat Sample",
2024-02-23 14:52:23 +01:00
"description": "Sample chat extension, a trusty cat tutor that will can teach you computer science topics.",
2023-11-13 16:30:27 +01:00
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-extension-samples"
},
"version": "0.1.0",
"engines": {
"vscode": "^1.88.0"
2023-11-13 16:30:27 +01:00
},
"extensionDependencies": [
"github.copilot-chat"
],
"categories": [
"Other"
2023-11-13 16:30:27 +01:00
],
"activationEvents": [ ],
2023-11-13 16:30:27 +01:00
"enabledApiProposals": [
"chatParticipant",
"chatVariableResolver",
2024-02-16 11:08:52 +01:00
"languageModels"
2023-11-13 16:30:27 +01:00
],
2024-02-23 15:56:39 +01:00
"contributes": {
"chatParticipants": [
{
2024-03-20 20:44:27 -03:00
"id": "chat-sample.cat",
"name": "cat",
"description": "Meow! What can I teach you?",
"isSticky": true,
"commands": [
{
"name": "teach",
"description": "Pick at random a computer science concept then explain it in purfect way of a cat"
},
{
"name": "play",
"description": "Do whatever you want, you are a cat after all"
}
]
}
],
2024-02-23 15:56:39 +01:00
"commands": [
{
"command": "cat.namesInEditor",
"title": "Use Cat Names in Editor"
}
2024-02-23 15:56:39 +01:00
]
},
2023-11-13 16:30:27 +01:00
"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"
}
}