-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
52
{
"name": "tagger-script",
"displayName": "Tagger Script Syntax",
"description": "Syntax highlighting and code snippets for MusicBrainz Picard Tagger Script.",
"version": "0.5.0",
"icon": "icon.png",
"publisher": "phw",
"repository": "https://github.com/phw/vscode-tagger-script",
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "taggerscript",
"aliases": [
"Tagger Script",
"taggerscript"
],
"extensions": [
".taggerscript",
".pts"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "taggerscript",
"scopeName": "source.taggerscript",
"path": "./syntaxes/taggerscript.tmLanguage.json"
}
],
"snippets": [
{
"language": "taggerscript",
"path": "./snippets/picard.jsonc"
}
]
},
"devDependencies": {
"changelog-parser": "^2.8.0",
"vsce": "^1.88.0"
},
"scripts": {
"package": "mkdir -p build && vsce package --out build",
"publish": "vsce publish"
}
}