-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.07 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
{
"name": "tales-lsp",
"displayName": "Tales LSP",
"publisher": "sand-witch",
"description": "",
"version": "0.0.2",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Programming Languages",
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/Player-205/tales-lsp"
},
"activationEvents": [
"onLanguage:tales"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "tales-lsp.recreate-server",
"title": "Tales LSP: Recreate server"
}
],
"configuration": {
"type": "object",
"title": "Example configuration",
"properties": {
"languageServerExample.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"languageServerExample.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
},
"languages": [
{
"id": "tales",
"aliases": [
"Tales",
"tales"
],
"extensions": [
".tl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "tales",
"scopeName": "source.tales",
"path": "./syntaxes/tales.tmLanguage.json"
}
]
},
"dependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.19",
"@types/vscode": "^1.74.0",
"vscode-languageclient": "^8.0.2",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"mocha": "^10.2.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack":"webpack --mode none",
"watch": "webpack --mode development --watch"
}
}