-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.39 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
{
"publisher": "MUmarShahbaz",
"name": "als",
"icon": "images/icon.jpeg",
"license": "Apache-2.0",
"displayName": "Arduino Language Support",
"description": "Language support extension to allow proper editing and programming of .ino files",
"repository": {
"type": "git",
"url": "https://github.com/KingHowler/Arduino-Language-Support"
},
"version": "1.0.4",
"engines": {
"vscode": "^1.43.0"
},
"extensionDependencies": [
"ms-vscode.cpptools"
],
"categories": [
"Programming Languages",
"Themes"
],
"contributes": {
"themes": [
{
"label": "Arduino IDE Light",
"uiTheme": "vs",
"path": "./themes/arduino-ide-light.json"
},
{
"label": "Arduino IDE Dark",
"uiTheme": "vs-dark",
"path": "./themes/arduino-ide-dark.json"
}
],
"languages": [
{
"id": "ino",
"aliases": [
"Arduino",
"ino"
],
"extensions": [
".ino",
".h",
".cpp"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ino",
"scopeName": "source.ino",
"path": "./syntaxes/ino.tmLanguage.json"
}
],
"keywords": [
"vscode",
"extension",
"arduino",
"ide",
"theme",
"language",
"support"
]
}
}