-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 KB
/
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
40
41
42
43
44
45
{
"name": "wyvern-syntax",
"displayName": "Wyvern Syntax",
"description": "Syntax highlighting for the Wyvern programming language",
"version": "0.0.1",
"publisher": "zyx-billy",
"repository": "https://github.com/zyx-billy/wyvern-syntax",
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "wyvern",
"aliases": [
"Wyvern",
"wyvern"
],
"extensions": [
".wyv",
".wyt"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "wyvern",
"scopeName": "source.wyvern",
"path": "./syntaxes/wyvern.tmLanguage.json"
}
]
},
"dependencies": {},
"devDependencies": {
"fs": "0.0.1-security",
"js-yaml": "^3.13.1"
},
"scripts": {
"vscode:prepublish": "node src/build_syntax.js"
}
}