-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
143 lines (143 loc) · 3.32 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
140
141
142
143
{
"name": "leo-aleo-plugin",
"displayName": "Leo & Aleo Plugin",
"description": "A Leo & Aleo language plugin for Visual Studio Code",
"version": "0.0.1",
"engines": {
"vscode": "^1.79.0"
},
"publisher": "StorSwift",
"license": "MIT",
"author": {
"name": "StorSwift"
},
"keywords": [
"aleo",
"leo",
"ALeo language service"
],
"categories": [
"Programming Languages",
"Formatters"
],
"activationEvents": [
"onLanguage:plaintext",
"onLanguage:leo",
"onCommand:leo-aleo-plugin.runCode"
],
"main": "./client/out/extension",
"capabilities": {
"completionProvider": {
"resolveProvider": "true",
"triggerCharacters": [
".",
"::"
]
},
"hoverProvider": "true"
},
"contributes": {
"commands": [
{
"command": "leo-aleo-plugin.helloWorld",
"title": "test-aleo"
},
{
"command": "leo-aleo-plugin.executeCode",
"title": "Execute Code"
}
],
"editor.decorations": [
{
"id": "executeButton",
"label": "Execute Button"
}
],
"languages": [
{
"id": "aleo",
"aliases": [
"leo",
"Aleo",
"Leo"
],
"extensions": [
".aleo",
".leo"
],
"filenamePatterns": [
"*.aleo",
"*.leo",
"*.in"
],
"firstLine": "(?!\\s*#)",
"configuration": "./syntaxes/language-configuration.json",
"configurationData": {
"showIndentGuide": true,
"checkSyntax": true
}
}
],
"grammars": [
{
"language": "aleo",
"scopeName": "source.aleo",
"path": "./syntaxes/aleo.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Example configuration",
"properties": {
"aleo.maxNumberOfProblems": {
"scope": "window",
"type": "number",
"default": 1000,
"description": "Controls the maximum number of problems produced by the server."
},
"aleo.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "messages",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "20.2.5",
"@types/vscode": "^1.79.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vscode/test-electron": "^2.3.2",
"eslint": "^8.41.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@types/ini": "^1.3.31",
"abnf": "^2.0.0",
"abnf-js": "^0.1.9",
"ini": "^4.1.1",
"peggy": "^3.0.2",
"prettier": "^3.0.0",
"vscode-oniguruma-wasm": "^1.1.0",
"vscode-textmate": "^9.0.0",
"vscode-uri": "^3.0.7"
}
}