-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 962 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 962 Bytes
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": "spwn-language-support",
"publisher": "Spu7Nix",
"displayName": "SPWN Language Support",
"description": "Language support for SPWN",
"version": "0.0.4",
"icon": "spwn_logo_smol.png",
"repository": {
"type" : "git",
"url" : "https://github.com/Spu7Nix/SPWN-vscode.git"
},
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "spwn",
"aliases": ["SPWN", "spwn"],
"extensions": [".spwn"],
"configuration": "./language-configuration.json",
"icon": {
"dark": "./spwn_logo_smol.png",
"light": "./spwn_logo_smol.png"
}
}],
"grammars": [{
"language": "spwn",
"scopeName": "source.spwn",
"path": "./syntaxes/spwn.tmLanguage.json"
}]
}
}