-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.28 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
{
"name": "example-vscode",
"displayName": "Example VSCode",
"description": "This is an example showing how to use example-vscode to bootstrap a new project",
"author": "Example Author",
"homepage": "https://github.com/robocorp/robotframework-lsp/blob/master/example-vscode/README.md",
"repository": {
"type": "git",
"url": "https://github.com/robocorp/robotframework-lsp.git"
},
"license": "Apache 2.0",
"version": "0.0.1",
"icon": "images/icon.png",
"publisher": "example-publisher",
"categories": [],
"activationEvents": [
"onLanguage:example_vscode",
"onCommand:extension.sayHello"
],
"contributes": {
"configuration": {
"title": "Example VSCode Language Server Configuration",
"type": "object",
"properties": {
"example.language-server.tcp-port": {
"type": "number",
"default": 0,
"description": "If the port is specified, connect to the language server previously started at the given port. Requires a VSCode restart to take effect."
},
"example.language-server.args": {
"type": "array",
"default": [],
"description": "Specifies the arguments to be passed to the example language server (i.e.: [\"-vv\", \"--log-file=~/exampleframework_ls.log\"]). Requires a VSCode restart to take effect."
},
"example.language-server.python": {
"type": "string",
"default": "",
"description": "Specifies the path to the python executable to be used for the example Language Server (the default is searching python on the PATH). Requires a VSCode restart to take effect."
}
}
},
"languages": [
{
"id": "example_vscode",
"extensions": [
".example_vscode"
],
"aliases": [
"Example VSCode",
"example_vscode"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "example_vscode",
"scopeName": "source.example.vscode",
"path": "./syntaxes/example.tmLanguage.json"
}
],
"debuggers": [],
"commands": [
{
"command": "extension.sayHello",
"title": "Hello World",
"category": "Hello"
}
]
},
"main": "./vscode-client/out/extension",
"scripts": {
"vscode:prepublish": "cd vscode-client && npm run compile && cd ..",
"compile": "cd vscode-client && tsc -p ./ && cd ..",
"watch": "cd vscode-client && tsc -watch -p ./ && cd .."
},
"dependencies": {
"path-exists": "^4.0.0",
"vscode-languageclient": "^7.0.0-next.12"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"@types/vscode": "1.53.0",
"vscode-test": "1.5.1",
"typescript": "^3.6.4"
},
"engines": {
"vscode": "^1.53.0"
}
}