This repository has been archived by the owner on Feb 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "betonquest-code-snippets",
"displayName": "BetonQuest Code Snippets",
"description": "Code snippets for easy quest development with BetonQuest Spigot Plugin",
"version": "2.2.0",
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#3F51B5",
"theme": "dark"
},
"author": "Jonas Blocher, SaltyAimbOtter, Wolf2323",
"publisher": "BetonQuest",
"license": "GPLv3",
"repository": {
"type": "git",
"url": "https://github.com/BetonQuest/betonquest-code-snippets/"
},
"bugs": {
"url": "https://github.com/BetonQuest/betonquest-code-snippets/issues"
},
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "yaml",
"path": "./snippets/conditions.json"
},
{
"language": "yaml",
"path": "./snippets/events.json"
},
{
"language": "yaml",
"path": "./snippets/objectives.json"
},
{
"language": "yaml",
"path": "./snippets/compatibility.json"
},
{
"language": "yaml",
"path": "./snippets/conversations.json"
}
],
"keybindings": [
{
"key": "alt+b",
"command": "editor.action.insertSnippet",
"when": "editorTextFocus && resourceExtname== .yml",
"args": {
"langId": "yaml",
"name": "conversationOption"
}
}
]
}
}