-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.41 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
92
{
"name": "dlitescript",
"displayName": "DLiteScript",
"description": "A delightfully simple scripting language",
"repository": "https://github.com/Dobefu/vscode-dlitescript",
"publisher": "Dobefu",
"version": "0.3.6",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "npm run compile-binaries && tsc -p ./",
"watch": "npm run compile-binaries && tsc -watch -p ./",
"compile-binaries": "node scripts/compile-binaries.js",
"prepackage": "npm run compile",
"package": "@vscode/vsce package"
},
"devDependencies": {
"@types/node": "^22.17.2",
"@types/vscode": "^1.75.0",
"@vscode/vsce": "^3.7.0",
"typescript": "^5.9.2"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
},
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": [
"onLanguage:dlitescript",
"onCommand:dlitescript.restartServer",
"onCommand:dlitescript.toggleServer"
],
"categories": [
"Programming Languages"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "dlitescript",
"aliases": [
"DLiteScript",
"dlitescript"
],
"extensions": [
"dl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "dlitescript",
"scopeName": "source.dlitescript",
"path": "./syntaxes/dlitescript.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "DLiteScript",
"properties": {
"dlitescript.lsp.enable": {
"type": "boolean",
"default": true,
"description": "Enable the DLiteScript Language Server Protocol"
},
"dlitescript.lsp.serverPath": {
"type": "string",
"default": "dlitescript",
"description": "The path to the DLiteScript Language Server executable"
},
"dlitescript.lsp.serverArgs": {
"type": "array",
"default": [
"lsp"
],
"description": "The arguments to pass to the DLiteScript Language Server executable"
}
}
},
"commands": [
{
"command": "dlitescript.restartServer",
"title": "Restart the DLiteScript Language Server"
},
{
"command": "dlitescript.toggleServer",
"title": "Toggle the DLiteScript Language Server"
}
]
}
}