forked from kasik96/Swift-VS-Code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1009 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "swift",
"displayName": "Swift Language",
"description": "Swift language support for VS Code",
"version": "0.0.2",
"publisher": "Kasik96",
"engines": {
"vscode": "^0.10.1"
},
"icon": "icon.png",
"categories": [
"Languages"
],
"galleryBanner": {
"color": "#EA7D28",
"theme": "light"
},
"bugs": {
"url": "https://github.com/kasik96/Swift-VS-Code/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/kasik96/Swift-VS-Code",
"repository": {
"type": "git",
"url": "https://github.com/kasik96/Swift-VS-Code"
},
"contributes": {
"languages": [{
"id": "swift",
"aliases": ["Swift", "swift"],
"extensions": [".swift"],
"configuration": "./swift.configuration.json"
}],
"grammars": [{
"language": "swift",
"scopeName": "source.swift",
"path": "./syntaxes/swift.tmLanguage"
}],
"snippets": [
{
"language": "swift",
"path": "./snippets/snippets.json"
}
]
}
}