-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 898 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
36
37
38
39
{
"name": "code-dimacs",
"displayName": "DIMACS Language Support",
"description": "Language support for CNF/DNF files in DIMACS format",
"version": "0.0.5",
"publisher": "giraugh",
"author": "Ewan Breakey (https://ewanb.me)",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/giraugh/code-dimacs.git"
},
"engines": {
"vscode": "^1.67.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"DIMACS",
"SAT solver",
"CNF",
"DNF",
"logic"
],
"contributes": {
"languages": [{
"id": "dimacs",
"aliases": ["DIMACS", "cnf", "dnf"],
"extensions": [".cnf", ".dnf"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "dimacs",
"scopeName": "source.dimacs",
"path": "./syntaxes/dimacs.tmLanguage.json"
}]
}
}