-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.18 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.18 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "jovial-lsp",
"displayName": "JOVIAL J73 Language Support",
"description": "Language Server Protocol support for JOVIAL J73 (MIL-STD-1589C) - the language powering F-15, B-52, AWACS, and other critical military systems",
"version": "1.0.2",
"author": "Zane Hambly",
"license": "Apache-2.0",
"publisher": "ZaneHambly",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages",
"Linters"
],
"keywords": [
"jovial",
"j73",
"mil-std-1589",
"military",
"embedded",
"avionics",
"legacy"
],
"activationEvents": [
"onLanguage:jovial"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "jovial",
"aliases": [
"JOVIAL",
"J73",
"jovial"
],
"extensions": [
".jov",
".j73",
".cpl",
".jovial"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "jovial",
"scopeName": "source.jovial",
"path": "./syntaxes/jovial.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "JOVIAL J73",
"properties": {
"jovial.pythonPath": {
"type": "string",
"default": "python",
"description": "Path to Python interpreter for LSP server"
},
"jovial.serverPath": {
"type": "string",
"default": "",
"description": "Path to jovial_lsp_server.py (leave empty to use bundled)"
},
"jovial.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces communication between VS Code and the JOVIAL language server"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"vscode-languageclient": "^8.1.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/vscode": "^1.75.0",
"typescript": "^5.0.0"
}
}