-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 KB
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
{
"publisher": "prjunnamed",
"name": "prjunnamed-syntax",
"displayName": "Project Unnamed IR syntax",
"description": "Project Unnamed intermediate representation syntax highlighting for Visual Studio Code",
"author": "Catherine <whitequark@whitequark.org>",
"license": "BSD-0-Clause",
"homepage": "https://github.com/prjunnamed/",
"version": "0.4.3",
"repository": {
"type": "git",
"url": "https://github.com/prjunnamed/vscode-syntax.git"
},
"engines": {
"vscode": "^1.82.0"
},
"extensionKind": [
"ui"
],
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "prjunnamed",
"aliases": [
"Unnamed IR"
],
"extensions": [
".uir"
]
}
],
"grammars": [
{
"language": "prjunnamed",
"scopeName": "source.prjunnamed",
"path": "./syntaxes/prjunnamed.tmLanguage.json"
}
]
},
"scripts": {},
"devDependencies": {
"@vscode/vsce": "^3.2.2"
}
}