-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.82 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.82 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
{
"name": "vibee-language",
"displayName": "VIBEE Language",
"description": "Language support for VIBEE - Evolutionary Self-Hosting Compiler",
"version": "1.0.0",
"publisher": "vibee",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:vibee"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "vibee",
"aliases": [
"VIBEE",
"vibee",
"Vibee",
"VIB"
],
"extensions": [
".vibee",
".vib",
".vibe"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/vibee-icon.svg",
"dark": "./icons/vibee-icon.svg"
}
}
],
"iconThemes": [
{
"id": "vibee-icons",
"label": "VIBEE Icons",
"path": "./icons/vibee-icon-theme.json"
}
],
"grammars": [
{
"language": "vibee",
"scopeName": "source.vibee",
"path": "./syntaxes/vibee.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "VIBEE",
"properties": {
"vibee.lsp.enabled": {
"type": "boolean",
"default": true,
"description": "Enable the VIBEE Language Server"
},
"vibee.lsp.path": {
"type": "string",
"default": "",
"description": "Path to the VIBEE Language Server"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.96.0",
"@types/node": "^25.0.10",
"typescript": "^6.0.3"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
}
}