-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.11 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
46
47
48
49
50
51
{
"name": "vhs",
"displayName": "VHS Syntax",
"description": "Syntax support for VHS .tape files",
"version": "0.0.4",
"publisher": "griimick",
"homepage": "https://github.com/griimick/vscode-vhs#readme",
"icon": "images/vhs-logo.png",
"repository": "https://github.com/griimick/vscode-vhs",
"engines": {
"vscode": "^1.72.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "tape",
"aliases": [
"VHS",
"tape"
],
"extensions": [
".tape"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./images/vhs-icon.png",
"dark": "./images/vhs-icon.png"
}
}
],
"grammars": [
{
"language": "tape",
"scopeName": "source.vhs",
"path": "./syntaxes/vhs.tmLanguage.json"
}
]
},
"devDependencies": {
"rimraf": "^3.0.2",
"vsce": "^2.14.0"
},
"scripts": {
"clean": "rimraf vhs-*.vsix",
"vscode:publish": "vsce publish",
"build:extension": "vsce package"
}
}