-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.95 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.95 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "baboon-vscode",
"displayName": "Baboon DML",
"description": "Baboon DML Language Support",
"version": "0.0.22",
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Programming Languages"
],
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:baboon"
],
"contributes": {
"commands": [
{
"command": "baboon.restartLsp",
"title": "Baboon: Restart LSP Server"
}
],
"languages": [
{
"id": "baboon",
"aliases": [
"Baboon",
"baboon"
],
"extensions": [
".baboon",
".bmo"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "baboon",
"scopeName": "source.baboon",
"path": "./syntaxes/baboon.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Baboon Configuration",
"properties": {
"baboon.serverPath": {
"type": "string",
"default": "baboon",
"description": "Path to the Baboon compiler executable. Supports ${workspaceFolder} variable."
},
"baboon.modelDirs": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Paths to Baboon model directories. Supports ${workspaceFolder} variable. Defaults to workspace folder if empty."
},
"baboon.serverOptions": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Additional options to prepend to the server arguments. Supports ${workspaceFolder} variable."
},
"baboon.serverArgsOverride": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Fully override server arguments. When set, modelDirs and serverOptions are ignored. Supports ${workspaceFolder} variable."
}
}
}
},
"repository": "https://github.com/7mind/baboon-vscode",
"publisher": "SeptimalMind",
"icon": "baboon.png",
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "node esbuild.js",
"watch": "node esbuild.js --watch",
"package": "node esbuild.js --production",
"compile-tests": "tsc -p ./",
"pretest": "npm run compile-tests && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.0.0",
"@types/vscode": "^1.95.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vscode/test-electron": "^2.3.9",
"esbuild": "^0.27.2",
"eslint": "^8.0.0",
"mocha": "^10.2.0",
"typescript": "^5.0.0"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
}
}