-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
151 lines (151 loc) · 4.33 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "vscode-custom-prompts",
"publisher": "Djiit",
"displayName": "Custom Prompts for GitHub Copilot Chat",
"description": "GitHub Copilot chat extension enabling re-use of prompts across developer teams.",
"homepage": "https://github.com/Djiit/vscode-custom-prompts/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/Djiit/vscode-custom-prompts.git"
},
"bugs": {
"url": "https://github.com/Djiit/vscode-custom-prompts/issues",
"email": "julien.tanay@gmail.com"
},
"author": {
"name": "Djiit",
"email": "julien.tanay@gmail.com"
},
"license": "SEE LICENSE IN LICENSE",
"version": "0.3.1",
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"AI",
"Chat"
],
"keywords": [
"copilot",
"chat",
"prompts",
"team",
"enterprise"
],
"extensionDependencies": [
"GitHub.copilot-chat"
],
"badges": [
{
"url": "https://vsmarketplacebadges.dev/version-short/Djiit.vscode-custom-prompts.svg",
"href": "https://marketplace.visualstudio.com/items?itemName=Djiit.vscode-custom-prompts",
"description": "Visual Studio Marketplace Version"
},
{
"url": "https://vsmarketplacebadges.dev/installs-short/Djiit.vscode-custom-prompts.svg",
"href": "https://marketplace.visualstudio.com/items?itemName=Djiit.vscode-custom-prompts",
"description": "Visual Studio Marketplace Installs"
},
{
"url": "https://vsmarketplacebadges.dev/rating-short/Djiit.vscode-custom-prompts.svg",
"href": "https://marketplace.visualstudio.com/items?itemName=Djiit.vscode-custom-prompts",
"description": "Visual Studio Marketplace Rating"
}
],
"activationEvents": [],
"contributes": {
"chatParticipants": [
{
"id": "copilot.customPrompts",
"name": "customPrompts",
"description": "Load custom prompts with /load",
"isSticky": true,
"commands": [
{
"name": "load",
"description": "Load a prompt using its command name",
"isSticky": true
}
]
}
],
"configuration": {
"type": "object",
"title": "Custom Prompts Configuration",
"properties": {
"customPrompts": {
"type": "object",
"title": "Custom Prompts",
"description": "Custom Prompts configuration",
"required": [
"prompts"
],
"properties": {
"prompts": {
"type": "array",
"description": "List of custom prompts",
"items": {
"type": "object",
"required": [
"command",
"content"
],
"properties": {
"name": {
"type": "string",
"description": "Name of the prompt"
},
"command": {
"type": "string",
"description": "Command to trigger the prompt"
},
"description": {
"type": "string",
"description": "Description of the prompt"
},
"content": {
"type": "string",
"description": "Content of the prompt"
}
}
}
}
}
}
}
}
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint .",
"format": "prettier --write .",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"deploy": "vsce publish",
"deploy:ovsx": "ovsx publish",
"pretest": "npm run compile",
"test": "vscode-test",
"prepare": "husky"
},
"dependencies": {
"@vscode/prompt-tsx": "^0.3.0-alpha.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^22.7.7",
"@types/vscode": "^1.92.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.0",
"eslint": "^9.13.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"ovsx": "^0.10.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
}
}