-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.02 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
{
"name": "bcomp-asm",
"displayName": "Basic Computer Assembly",
"version": "2.0.0",
"publisher": "mamsdeveloper",
"description": "A vscode language server that enables highlighting and completion for Basic Computer assembly files.",
"author": {
"name": "Mikhail Butvin"
},
"license": "MIT",
"keywords": [
"bcomp-asm",
"basm",
"assembler",
"bcomp"
],
"repository": {
"type": "git",
"url": "https://github.com/mamsdeveloper/bcomp-asm"
},
"bugs": {
"url": "https://github.com/mamsdeveloper/bcomp-asm/issues"
},
"engines": {
"vscode": "^1.71.0",
"node": "^16.14.0"
},
"icon": "assets/icon.png",
"categories": [
"Programming Languages"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/package/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "bcomp-asm configuration",
"properties": {}
},
"commands": [
{
"command": "bcomp-asm.parse-asm",
"title": "Parse assembly",
"category": "bcomp-asm"
},
{
"command": "bcomp-asm.find-unused-labels",
"title": "Find unused labels",
"category": "bcomp-asm"
}
],
"menus": {},
"languages": [
{
"id": "bcomp-asm",
"extensions": [
".bcomp",
".basm",
".BASM"
],
"aliases": [
"Bcomp Assembly"
],
"configuration": "./language-configuration.json"
},
{
"id": "basm-markdown-codeblock"
}
],
"grammars": [
{
"language": "bcomp-asm",
"scopeName": "source.basm",
"path": "./grammar/basm.json"
},
{
"language": "basm-markdown-codeblock",
"scopeName": "markdown.asm.codeblock",
"path": "./grammar/basm_markdown_codeblock.json",
"injectTo": [
"text.html.markdown"
]
}
]
},
"vsce": {
"o": "release"
},
"scripts": {
"compile": "tsc -p ./",
"tslint": "eslint ./**/*.ts",
"watch": "tsc -w -p ./",
"package": "vsce package -o ./release/bcom-asm-2.0.1.vsix",
"publish": "vsce publish",
"antlr4ts": "antlr4ts -o ./src/parser grammar/basm.g4"
},
"dependencies": {
"antlr4ts": "^0.5.0-alpha.4",
"jsonc-parser": "^3.0.0",
"ts-node": "^10.7.0"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/vscode": "^1.65.0",
"antlr4ts-cli": "^0.5.0-alpha.4",
"source-map-support": "^0.5.21",
"typescript": "^4.6.2"
}
}