-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
100 lines (100 loc) · 1.97 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "Kotlin",
"displayName": "Kotlin Language",
"description": "Kotlin language support for VS Code",
"version": "1.7.1",
"publisher": "mathiasfrohlich",
"license": "Apache-2.0",
"scripts": {
"package": "./node_modules/.bin/vsce package"
},
"engines": {
"vscode": "^1.8.0"
},
"icon": "artwork/icon.png",
"categories": [
"Programming Languages"
],
"bugs": {
"url": "https://github.com/mathiasfrohlich/vscode-kotlin/issues"
},
"homepage": "https://github.com/mathiasfrohlich/vscode-kotlin",
"repository": {
"type": "git",
"url": "https://github.com/mathiasfrohlich/vscode-kotlin.git"
},
"keywords": [
"Kotlin",
"kotlin",
"kt",
"kts"
],
"contributes": {
"languages": [
{
"id": "kotlin",
"aliases": [
"Kotlin",
"kotlin"
],
"extensions": [
".kt"
],
"configuration": "./kotlin.configuration.json"
},
{
"id": "kotlinscript",
"aliases": [
"Kotlinscript",
"kotlinscript"
],
"extensions": [
".kts"
],
"configuration": "./kotlin.configuration.json"
}
],
"grammars": [
{
"language": "kotlin",
"scopeName": "source.kotlin",
"path": "./syntaxes/Kotlin.tmLanguage"
},
{
"language": "kotlinscript",
"scopeName": "source.kotlin",
"path": "./syntaxes/Kotlin.tmLanguage"
},
{
"scopeName": "markdown.kotlin.codeblock",
"path": "./syntaxes/codeblock.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.kotlin": "kotlin"
}
}
],
"snippets": [
{
"language": "kotlin",
"path": "./snippets/kotlin.json"
},
{
"language": "kotlinscript",
"path": "./snippets/kotlin.json"
}
]
},
"devDependencies": {
"vsce": "^1.36.2",
"vscode": "0.11.x",
"vso-node-api": "6.1.2-preview"
},
"__metadata": {
"id": "d36bad53-910d-481a-a7ee-8992450665f6",
"publisherId": "6c0520a7-c10a-45a4-b172-d75ca7dca2c1",
"publisherDisplayName": "mathiasfrohlich"
}
}