-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.06 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.06 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "t-ruby",
"displayName": "T-Ruby",
"description": "T-Ruby language support with type annotations for Ruby",
"version": "0.2.3",
"publisher": "t-ruby",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages",
"Linters"
],
"keywords": [
"ruby",
"t-ruby",
"type",
"typescript",
"static typing"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "t-ruby",
"aliases": [
"T-Ruby",
"t-ruby",
"trb"
],
"extensions": [
".trb",
".d.trb"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/t-ruby.svg",
"dark": "./icons/t-ruby.svg"
}
}
],
"grammars": [
{
"language": "t-ruby",
"scopeName": "source.t-ruby",
"path": "./syntaxes/t-ruby.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "T-Ruby",
"properties": {
"t-ruby.lspPath": {
"type": "string",
"default": "trc",
"description": "Path to the T-Ruby compiler (trc) executable"
},
"t-ruby.enableLSP": {
"type": "boolean",
"default": true,
"description": "Enable Language Server Protocol support"
},
"t-ruby.diagnostics.enable": {
"type": "boolean",
"default": true,
"description": "Enable real-time diagnostics"
},
"t-ruby.completion.enable": {
"type": "boolean",
"default": true,
"description": "Enable autocomplete suggestions"
}
}
},
"commands": [
{
"command": "t-ruby.compile",
"title": "T-Ruby: Compile Current File"
},
{
"command": "t-ruby.generateDeclaration",
"title": "T-Ruby: Generate Declaration File"
},
{
"command": "t-ruby.restartLSP",
"title": "T-Ruby: Restart Language Server"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^18.x",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.45.0",
"@types/glob": "^8.1.0",
"glob": "^10.3.10",
"mocha": "^10.3.0",
"typescript": "^5.2.0"
},
"dependencies": {
"vscode-languageclient": "^9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/type-ruby/t-ruby-vscode"
},
"homepage": "https://github.com/type-ruby/t-ruby-vscode#readme",
"bugs": {
"url": "https://github.com/type-ruby/t-ruby-vscode/issues"
},
"license": "MIT",
"icon": "icon.png"
}