-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.2 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
{
"name": "clio-lang",
"displayName": "Clio Language Support",
"description": "Language support for the Clio Programming Language",
"version": "0.2.0",
"publisher": "clio",
"author": {
"email": "[email protected]",
"name": "Michele Riva"
},
"engines": {
"vscode": "^1.54.0"
},
"categories": [
"Programming Languages"
],
"icon": "images/logo.png",
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "clio",
"aliases": [
"Clio",
"clio"
],
"extensions": [
".clio"
],
"configuration": "./Clio.configuration.json"
}
],
"breakpoints": [
{
"language": "clio"
}
],
"grammars": [
{
"language": "clio",
"scopeName": "source.clio",
"path": "./syntaxes/clio.tmLanguage.json"
}
],
"snippets": [
{
"language": "clio",
"path": "./snippets.json"
}
],
"configuration": {
"title": "Clio configuration",
"properties": {
"clio.languageServer.enabled": {
"type": "boolean",
"default": false,
"description": "Set to 'true' to enable smarter language support (e.g. hover, code completion, ...) for Clio. Requires 'clio-language-server' to be on your PATH."
},
"clio.languageServer.command": {
"type": "string",
"default": "clio-language-server --stdio",
"description": "The command for launching the language server."
},
"clio.languageServer.cwd": {
"type": "string",
"default": "",
"description": "If specified, the directory in which the language server will be executed."
}
}
}
},
"__metadata": {
"installedTimestamp": 1627902886496
},
"activationEvents": [
"onLanguage:clio"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w"
},
"devDependencies": {
"@types/node": "^14.14.35",
"@types/vscode": "^1.54.0",
"typescript": "^4.2.3"
},
"dependencies": {
"vscode-languageclient": "^7.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/clio-lang/vscode-clio.git"
}
}