-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.3 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "rc-script",
"displayName": "RC Script Language",
"description": "RC Script Language Syntax Highlighting",
"publisher": "willasm",
"author": {
"name": "William McKeever"
},
"license": "MIT - SEE LICENSE IN LICENSE.md",
"version": "1.0.0",
"engines": {
"vscode": "^1.71.0"
},
"icon": "images/icon.png",
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"rc",
"script",
"syntax",
"highlighting",
"editor"
],
"activationEvents": [
"onLanguage:rc-script"
],
"main": "./src/extension.js",
"bugs": {
"url": "https://github.com/willasm/rc-script/issues",
"email": "willmck63@gmail.com"
},
"homepage": "https://github.com/willasm/rc-script",
"repository": {
"type": "git",
"url": "https://github.com/willasm/rc-script.git"
},
"contributes": {
"languages": [{
"id": "rc-script",
"aliases": ["RC Script", "rc-script", "rc"],
"extensions": ["rc"],
"configuration": "./src/language-configuration.json"
}],
"grammars": [{
"language": "rc-script",
"scopeName": "source.rc",
"path": "./syntaxes/rc-script.tmLanguage.json"
}],
"menus": {
"commandPalette": [
{
"command": "rc-script.run.editor",
"when": "editorLangId == rc-script"
}
]
},
"commands": [
{
"command": "rc-script.run.editor",
"title": "RC Script: Run External Script Editor",
"when": "editorTextFocus || editorLangId == rc-script || resourceLangId == rc-script"
},
{
"command": "rc-script.set.editor",
"title": "RC Script: Set External Script Editor Location",
"when": "editorTextFocus || editorLangId == rc-script || resourceLangId == rc-script"
}
],
"configuration": {
"title": "RC Script",
"type": "object",
"properties": {
"rc-script.fullPathToEditor": {
"type": "string",
"description": "Specifies the full path to the RC Editor executable.\nNote: If editor is located in your Path variable\nyou can just enter the name of the executable."
}
}
},
"snippets": [
{
"language": "rc-script",
"path": "./src/rc-snippets.json"
}
]
}
}