-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
134 lines (134 loc) · 4.29 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
129
130
131
132
133
134
{
"name": "led-basic",
"displayName": "LED Basic",
"description": "LED Basic language support for Visual Studio Code",
"version": "2.0.6",
"publisher": "Gamadril",
"license": "MIT",
"engines": {
"vscode": "^1.67.0"
},
"categories": [
"Programming Languages"
],
"icon": "res/logo.png",
"qna": false,
"contributes": {
"languages": [
{
"id": "led_basic",
"aliases": [
"LED Basic",
"led_basic"
],
"extensions": [
".bas"
],
"configuration": "./language-configuration.json"
},
{
"id": "led_basic-output",
"mimetypes": [
"text/x-code-output"
]
}
],
"grammars": [
{
"language": "led_basic",
"scopeName": "source.led_basic",
"path": "./syntaxes/led_basic.tmLanguage.json"
},
{
"language": "led_basic-output",
"scopeName": "output.led_basic",
"path": "./syntaxes/led_basic.output.tmLanguage.json"
}
],
"snippets": [
{
"language": "led_basic",
"path": "./snippets/led_basic.json"
}
],
"commands": [
{
"command": "led_basic.device",
"title": "LED-Basic: Select target device"
},
{
"command": "led_basic.serialports",
"title": "LED-Basic: Select serial port / connected device"
},
{
"command": "led_basic.upload",
"title": "LED-Basic: Upload code to device"
},
{
"command": "led_basic.terminal",
"title": "LED-Basic: Open device terminal"
}
],
"keybindings": [
{
"command": "led_basic.upload",
"key": "ctrl+alt+u",
"mac": "cmd+alt+u"
}
],
"configuration": {
"type": "object",
"title": "LED Basic configuration",
"properties": {
"led_basic.openTerminalAfterUpload": {
"type": "boolean",
"default": false,
"description": "Activates the serial terminal for debug and error messages from the device."
},
"led_basic.caseInsensitiveCalls": {
"type": "boolean",
"default": false,
"description": "Allow case insensitive function calls. e.g. LED.Update() and LED.UPDATE() will be not detected as errors. "
},
"led_basic.useStrictMode": {
"type": "boolean",
"default": true,
"description": "Activate strict language mode (only numeric labels allowed and one letter as variable name)"
}
}
}
},
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:led_basic"
],
"repository": {
"type": "git",
"url": "https://github.com/Gamadril/led-basic-vscode.git"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"build_compiler": "tsc -t ES2020 -outDir compiler src/LEDBasicEvalOperation.ts src/LEDBasicEvalOperationEx.ts src/LEDBasicParser.ts src/Uploader.ts"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "^14.x",
"@types/vscode": "^1.67.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@vscode/test-electron": "^2.1.3",
"eslint": "^8.14.0",
"glob": "^8.0.1",
"mocha": "^9.2.2",
"typescript": "^4.6.4"
},
"dependencies": {
"ohm-js": "git+https://github.com/Gamadril/ohm.git"
}
}