-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 910 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
{
"name": "rockstar-language",
"displayName": "Rockstar Language",
"description": "Support for Rockstar programming language",
"version": "1.0.1",
"publisher": "ra100",
"repository": {
"type": "git",
"url": "https://github.com/ra100/vscode-rockstar-language.git"
},
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "rockstar",
"aliases": [
"Rockstar",
"rockstar"
],
"extensions": [
"rock"
],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "rockstar",
"scopeName": "source.rockstar",
"path": "./syntaxes/rockstar.tmLanguage.json"
}]
}
}