-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
139 lines (139 loc) · 5.1 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "ic10-language-support",
"authors": [
{
"name": "Ashley Williamson",
"url": "https://github.com/awilliamson/"
},
{
"name": "Xandaros",
"url": "https://github.com/Xandaros/"
}
],
"icon": "images/icon.png",
"displayName": "IC10 Language Support",
"description": "IC10 MIPS-like Language Support for Stationeers - Featuring completions, hover information, signature help, goto definition, diagnostics, and more.",
"publisher": "AshleyWilliamson",
"version": "0.7.4",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Programming Languages"
],
"main": "./out/main.js",
"contributes": {
"languages": [
{
"id": "ic10",
"aliases": [
"IC10",
"ic10"
],
"extensions": [
".ic10"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ic10",
"scopeName": "source.ic10",
"path": "./syntaxes/ic10.tmLanguage.json"
}
],
"commands": [
{
"command": "ic10.lsp.restart",
"title": "IC10: Restart Server",
"description": "Restart IC10 Language Server"
},
{
"command": "ic10.lsp.version",
"title": "IC10: Show Version",
"description": "IC10 Language Server Version"
}
],
"configuration": {
"title": "IC10 Language Support",
"properties": {
"ic10.useRemoteLanguageServer": {
"type": "boolean",
"default": false,
"title": "Use Remote Language Server",
"description": "Whether to connect to a remote language server or run the language server locally"
},
"ic10.remoteLanguageServerHost": {
"type": "string",
"default": "localhost",
"title": "Remote Language Server Host",
"description": "The host name for the remote language server"
},
"ic10.remoteLanguageServerPort": {
"type": "number",
"default": 9257,
"title": "Remote Language Server Port",
"description": "The port number for the remote language server"
},
"ic10.lsp.max_lines": {
"type": "number",
"default": 128,
"title": "Maximum Number of Lines",
"description": "The maximum number of lines permitted by ic10. Errors will be generated for code above this limit."
},
"ic10.lsp.max_columns": {
"type": "number",
"default": 52,
"title": "Maximum Columns per Line",
"description": "The maximum number of columns permitted by ic10. Errors will be generated for code above this limit."
},
"ic10.lsp.warnings.overline_comment": {
"type": "boolean",
"default": true,
"title": "Show Overline Comment Warning",
"description": "Whether to show a warning when a comment is over the line limit (ic10.max_lines)"
},
"ic10.lsp.warnings.overcolumn_comment": {
"type": "boolean",
"default": true,
"title": "Show Overcolumn Comment Warning",
"description": "Whether to show a warning when a comment is over the column limit (ic10.max_columns)"
}
}
}
},
"activationEvents": [
"onLanguage:ic10"
],
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"release": "standard-version"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vscode/test-electron": "^2.3.0",
"esbuild": "^0.17.14",
"eslint": "^8.36.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"standard-version": "^9.5.0",
"typescript": "^4.9.5"
},
"dependencies": {
"vscode-languageclient": "^8.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/awilliamson/ic10-language-support"
}
}