-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "tspascoal-copilot-chat-parrot",
"displayName": "Parrot",
"description": "Parrot is a chat participant that repeats things",
"version": "0.0.11",
"repository": {
"type": "git",
"url": "https://github.com/tspascoal/copilot-chat-parrot-extension.git"
},
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Chat"
],
"activationEvents": [],
"extensionDependencies": [
"github.copilot",
"github.copilot-chat"
],
"main": "./dist/extension.js",
"enabledApiProposals": [],
"contributes": {
"commands": [
{
"command": "tspascoal-copilot-chat-parrot.parrot",
"title": "The Parrot repeats things"
}
],
"chatParticipants": [
{
"id": "tspascoal.copilot.parrot",
"name": "parrot",
"fullName": "Parrot",
"description": "Who knows that this does. It just repeats things.",
"isSticky": true,
"commands": [
{
"name": "listmodels",
"description": "List the available models"
},
{
"name": "likeapirate",
"when": "config.tspascoal.copilot.parrot.like.Enabled",
"description": "Parrot like a pirate"
},
{
"name": "likeyoda",
"when": "config.tspascoal.copilot.parrot.like.Enabled",
"description": "Parrot like yoda"
}
]
}
],
"configuration": {
"title": "Parrot",
"properties": {
"tspascoal.copilot.parrot.like.Enabled": {
"type": "boolean",
"default": true,
"description": "Allow parrot to talk like a pirate or yoda using commands"
},
"tspascoal.copilot.parrot.ProvideFollowups": {
"type": "boolean",
"title": "Provide Followups",
"default": true,
"description": "Provide followups suggestions"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src -f @microsoft/eslint-formatter-sarif -o eslint.sarif",
"test": "vscode-test"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/sinon": "^17.0.3",
"@types/vscode": "^1.93.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"npm-run-all": "^4.1.5",
"sinon": "^19.0.2",
"typescript": "^5.7.3"
}
}