-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 851 Bytes
/
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
{
"name": "vala-snippets",
"displayName": "Vala Snippets",
"description": "Code snippets for Vala Language to make app develpment faster",
"version": "1.0.0",
"publisher": "Laurence Bahiirwa",
"repository": {
"type": "git",
"url": "http://github.com/bahiirwa/vala-snippets"
},
"engines": {
"vscode": "^1.29.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "vala",
"path": "./snippets/classes.snippets.json"
},
{
"language": "vala",
"path": "./snippets/window.snippets.json"
},
{
"language": "vala",
"path": "./snippets/functions.snippets.json"
}
]
}
}