-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "ghost-language",
"displayName": "Ghost Language",
"icon": "icon.png",
"description": "Ghost extension for Visual Studio Code.",
"publisher": "GhostLanguage",
"version": "0.0.9",
"license": "MIT",
"keywords": ["ghost"],
"private": true,
"bugs": {
"url": "https://github.com/ghost-language/vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ghost-language/vscode.git"
},
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "ghost",
"path": "./snippets/ghost.json"
}
],
"languages": [{
"id": "ghost",
"aliases": ["Ghost", "ghost"],
"extensions": [".ghost"],
"configuration": "./ghost.configuration.json",
"icons": {
"light": "./icons/ghost-light.svg",
"dark": "./icons/ghost-dark.svg"
}
}],
"grammars": [{
"language": "ghost",
"scopeName": "source.ghost",
"path": "./syntaxes/ghost.tmLanguage.json"
}]
}
}