-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "ConverseScript",
"displayName": "ConverseScript",
"description": "Syntax hightlight for ConverseScript (conversational script for NewBot Framework) ",
"version": "1.0.0",
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Programming Languages"
],
"repository": "https://github.com/newbotjs/conversescript-lang",
"publisher": "sam0552",
"scripts": {
"vscode:publish": "npx vsce package && npx vsce publish",
"vscode:login": "npx vsce login ConverseScript"
},
"contributes": {
"languages": [
{
"id": "converse",
"aliases": [
"ConverseScript",
"conversescript"
],
"extensions": [
".converse"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "converse",
"scopeName": "source.converse",
"path": "./syntaxes/conversescript.tmLanguage.json"
}
]
},
"devDependencies": {
"vsce": "^1.71.0"
}
}