-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.53 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
{
"name": "lc3-assembly",
"displayName": "LC3 Assembly",
"description": "Syntax highlighting for LC3 assembly language used in computer engineering education.",
"version": "2.1.4",
"icon": "lc3-assembly-icon.png",
"publisher": "PaperFanz",
"repository": {
"type": "Github",
"url": "https://github.com/PaperFanz/lc3-assembly-vscode-ext"
},
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"activationEvents": [
"onLanguage:lc3asm"
],
"main": "./out/main.js",
"contributes": {
"languages": [
{
"id": "lc3asm",
"aliases": [
"LC3 Assembly",
"lc3asm"
],
"extensions": [
".asm"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "lc3asm",
"scopeName": "source.asm",
"path": "./syntaxes/lc3asm.tmLanguage.json"
}
],
"snippets": [
{
"language": "lc3asm",
"path": "./snippets/lc3asm.json"
}
],
"commands": [
{
"command": "lc3asm.assemble",
"title": "Assemble"
},
{
"command": "lc3asm.assembleProject",
"title": "Assemble Project"
},
{
"command": "lc3asm.assembleFolder",
"title": "Assemble Current Directory"
},
{
"command": "lc3asm.assembleFolderProject",
"title": "Assemble Current Directory as Project"
}
],
"keybindings":[
{
"command": "lc3asm.assemble",
"key": "alt+shift+a"
},
{
"command": "lc3asm.assembleProject",
"key": "alt+shift+p"
},
{
"command": "lc3asm.assembleFolder",
"key": "alt+shift+d"
},
{
"command": "lc3asm.assembleFolderProject",
"key": "alt+shift+b"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"@types/vscode": "^1.18.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"typescript": "^3.3.1",
"tslint": "^5.12.1",
"vscode-test": "^1.0.2"
},
"__metadata": {
"id": "01312745-961c-435d-9a29-b5fd640e0e65",
"publisherDisplayName": "PaperFanz",
"publisherId": "d8b092d5-da0f-4b70-bf67-3b7de8cbd810"
}
}