-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.44 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.44 KB
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
{
"name": "asm8052",
"icon": "images/icon-extension.png",
"displayName": "8052 Assembly",
"license": "Apache License 2.0",
"description": "Syntax highlighting and IntelliSense for MCS-51/8051/8052 assembly language.",
"version": "0.1.0",
"publisher": "techqi",
"author": {
"name": "hsrzq",
"url": "https://github.com/hsrzq",
"email": "hsrzq@126.com"
},
"keywords": [
"8051",
"8052",
"8051 assembly",
"8052 assembly",
"assembly",
"asm",
"embedded",
"mcs-51",
"mcs51",
"mcu",
"microcontroller",
"a51",
"c51",
"h51",
"sdcc",
"keil"
],
"repository": {
"type": "git",
"url": "https://github.com/hsrzq/VSCode-ASM8052.git"
},
"repository-cn": {
"type": "git",
"url": "https://gitee.com/techqi/VSCode-ASM8052.git"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "asm8052",
"aliases": [
"asm8052",
"8052asm",
"asm8051",
"8051asm"
],
"extensions": [
".a51",
".asm",
".c51",
".h51",
".s"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "asm8052",
"scopeName": "source.asm8052",
"path": "./syntaxes/asm8052.tmLanguage.json"
}
]
}
}