forked from lettucegoblin/vscode-lcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.46 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
{
"name": "lcc-tools",
"publisher": "lettucegoblin",
"displayName": "LCC-Tools",
"description": "LCC syntax highlighting (Dos Reis version of LCC)",
"version": "1.1.8",
"icon": "images/golden.png",
"keywords": [
"lcc",
"lcc-tools",
"syntax highlighting"
],
"repository": {
"type": "git",
"url": "https://github.com/lettucegoblin/vscode-lcc.git"
},
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "lcc.toggleErrorLinting",
"title": "LCC: Toggle Error Linting"
},
{
"command": "lcc.toggleWarningLinting",
"title": "LCC: Toggle Warning Linting"
}
],
"languages": [
{
"id": "lcc",
"aliases": [
"LCC",
"lcc"
],
"extensions": [
".bin",
".a"
],
"configuration": "./language-configuration.json"
}
],
"configuration": {
"title": "LCC Assembly",
"properties": {
"lccAssembly.enableErrorUnderlining": {
"type": "boolean",
"default": false,
"description": "Enable error underlining in LCC Assembly files"
},
"lccAssembly.enableWarningUnderlining": {
"type": "boolean",
"default": false,
"description": "Enable warning underlining in LCC Assembly files"
},
"lccAssembly.enableInformationUnderlining": {
"type": "boolean",
"default": false,
"description": "Enable information underlining in LCC Assembly files"
}
}
},
"languageserver": {
"assembly": {
"command": "node",
"args": [
"./out/server.js"
],
"filetypes": [
"a"
]
}
},
"grammars": [
{
"language": "lcc",
"scopeName": "source.lcc",
"path": "./syntaxes/lcc.tmLanguage.json"
}
],
"snippets": [
{
"language": "lcc",
"path": "./snippets/lcc.json"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.86.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.9"
}
}