-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.template.json
More file actions
37 lines (37 loc) · 921 Bytes
/
package.template.json
File metadata and controls
37 lines (37 loc) · 921 Bytes
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
{
"name": "{{name}}",
"displayName": "{{displayName}}",
"description": "{{description}}",
"publisher": "{{publisher}}",
"contributes": {
"configuration": {
"title": "{{title}}",
"properties": {
"project.isSelfHosted": {
"type": "boolean",
"default": false,
"description": "Whether this is a self-hosted deployment (uses {{title}} auth when true, Clerk auth when false)"
}
}
},
"uriSchemes": [
{
"scheme": "cursor://{{publisher}}.{{name}}",
"title": "{{title}} OAuth Callback"
},
{
"scheme": "vscode://zast-ai.zast-extension",
"title": "Zast Express OAuth & Payment Callback"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "assess-explorer",
"title": "{{title}}",
"icon": "assets/zast-icon.svg"
}
]
}
}
}