-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
128 lines (128 loc) · 3.82 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "vscode-s-quirrel",
"displayName": "(S)quirrel",
"description": "Squirrel and Quirrel language support",
"version": "0.0.8",
"publisher": "mepsoid",
"icon": "acorn.png",
"license": "MIT",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"squirrel",
"quirrel",
"nut"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^10.17.19",
"@types/vscode": "^1.43.0",
"tslint": "^5.16.0",
"typescript": "^3.8.3"
},
"contributes": {
"configuration": {
"title": "(S)quirrel",
"properties": {
"squirrel.codeAnalysis.command": {
"type": "string",
"default": "csq-dev --static-analysis --message-output-file:$DIAG_JSON $SRC_FILE",
"markdownDescription": "Identifier of environment variable that contains a command line of code runner utility, or command line of a code runner utility. Parameters are: **DIAG_JSON** - name of a temporary file to write diagnostic results to, **SRC_FILE** - name of the file to process. If not empty, this overrides **squirrel.syntaxChecker.fileName**."
},
"squirrel.syntaxChecker.fileName": {
"type": "string",
"default": "sq3_static_analyzer-dev",
"markdownDescription": "Identifier of environment variable that contains full path to syntax checking utility, or full path to syntax checking utility, or executable file name that must be discoverable through system **PATH** variable. This is deprecated, use **Code Analysis** tool since it is more flexible."
},
"squirrel.codeRunner.fileName": {
"type": "string",
"default": "csq-dev",
"markdownDescription": "Identifier of environment variable that contains full path to code runner utility, or full path to code runner utility, or executable file name that must be discoverable through system **PATH** variable."
}
}
},
"languages": [
{
"id": "squirrel",
"aliases": [
"squirrel",
"Squirrel",
"quirrel",
"Quirrel"
],
"extensions": [
"nut"
],
"configuration": "./syntaxes/squirrel.language-configuration.json"
},
{
"id": "consolelog",
"mimetypes": [
"log",
"text/log",
"text/x-log",
"text/x-code-output",
"x-code-output"
],
"configuration": "./syntaxes/consolelog-configuration.json"
}
],
"grammars": [
{
"language": "squirrel",
"scopeName": "source.squirrel",
"path": "./syntaxes/squirrel.tmLanguage.json"
},
{
"language": "consolelog",
"scopeName": "console.log",
"path": "./syntaxes/consolelog.tmLanguage.json"
}
],
"snippets": [
{
"language": "squirrel",
"path": "./snippets/squirrel.json"
}
],
"commands": [
{
"command": "squirrel.editor.action.openModule",
"title": "Open module source in new tab"
},
{
"command": "squirrel.editor.action.runCode",
"title": "Run code at active document"
}
],
"keybindings": [
{
"key": "f12",
"command": "squirrel.editor.action.openModule",
"when": "editorTextFocus && editorLangId == 'squirrel'"
},
{
"key": "ctrl+f5",
"command": "squirrel.editor.action.runCode",
"when": "editorTextFocus && editorLangId == 'squirrel'"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/mepsoid/vscode-s-quirrel.git"
}
}