-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.96 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
{
"name": "lama-lsp",
"description": "Lama language server",
"author": "Savelev Artem",
"license": "MIT",
"version": "2.7.0",
"publisher": "mrartemsav",
"categories": [
"Programming Languages"
],
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.80.0"
},
"activationEvents": [
"onCommand:lama.run",
"workspaceContains:**/*.lama"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "lama",
"aliases": [
"Lama",
"lama"
],
"extensions": [
".lama"
],
"configuration": "./languages/lama.language-configuration.json",
"icon": {
"dark": "./languages/lama-light.svg",
"light": "./languages/lama.svg"
}
}
],
"grammars": [
{
"language": "lama",
"scopeName": "source.lama",
"path": "./syntaxes/lama.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Example configuration",
"properties": {
"languageServerLama.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"languageServerLama.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
},
"languageServerLama.maxFormatWidth": {
"type": "number",
"default": 125,
"description": "Controls the maximum length of the line after formatting."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile; npm run esbuild-base -- --minify",
"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 ..",
"test": "powershell.exe -ExecutionPolicy Bypass -File ./scripts/e2e.ps1",
"esbuild-base": "esbuild ./client/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 ./"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^16.11.7",
"@types/vscode": "^1.80.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"esbuild": "^0.19.2",
"eslint": "^8.35.0",
"mocha": "^9.2.1",
"typescript": "^4.9.5",
"vscode": "^1.1.37"
},
"dependencies": {
"chevrotain": "^10.5.0",
"file-uri-to-path": "^2.0.0",
"vsce": "^2.15.0",
"vscode-cpptools": "^6.1.0",
"vscode-languageserver": "^8.1.0",
"vscode-languageserver-textdocument": "^1.0.8"
},
"repository": "https://github.com/JetBrains-Research/Lama-lsp.git",
"icon": "./languages/llama.png"
}