forked from colejcummins/llvm-syntax-highlighting
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "llvm-syntax-highlighting",
"displayName": "LLVM Syntax Highlighting",
"description": "Lightweight syntax highlighting for LLVM IR",
"version": "0.0.4",
"publisher": "colejcummins",
"icon": "llvmlogo.png",
"repository": {
"type": "git",
"url": "https://github.com/colejcummins/llvm-syntax-highlighting.git"
},
"engines": {
"vscode": "^1.40.0"
},
"scripts": {
"test": "node scripts/validate-grammar.js",
"package": "npm test && vsce package"
},
"devDependencies": {
"@vscode/vsce": "^3.6.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "llvm",
"aliases": ["LLVM", "llvm"],
"extensions": [".ll"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "llvm",
"scopeName": "source.ll",
"path": "./syntaxes/llvm.tmLanguage.json"
}]
}
}