-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
148 lines (148 loc) · 3.54 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "steep-vscode",
"displayName": "Steep",
"description": "Steep type checker",
"publisher": "soutaro",
"license": "MIT",
"version": "0.10.0",
"repository": {
"type": "git",
"url": "https://github.com/soutaro/steep-vscode.git"
},
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:."
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "ruby",
"filenames": [
"Steepfile"
]
}
],
"commands": [
{
"command": "steep.typecheckAll",
"title": "Type check project",
"category": "Steep"
},
{
"command": "steep.typecheckGroups",
"title": "Type check groups",
"category": "Steep"
},
{
"command": "steep.restartAll",
"title": "Restart",
"category": "Steep"
}
],
"menus": {
"commandPalette": [
{
"command": "steep.typecheckAll",
"when": "steep.serverMajorVersion >= 1 && steep.serverMinorVersion >= 9"
},
{
"command": "steep.typecheckGroups",
"when": "steep.serverMajorVersion >= 1 && steep.serverMinorVersion >= 9"
}
]
},
"configuration": {
"title": "Steep",
"properties": {
"steep.enabled": {
"markdownDescription": "Enable/disable Steep on directory with `Steepfile`",
"type": "boolean",
"default": true
},
"steep.command": {
"markdownDescription": "Command line to start steep (Empty to default: `bin/steep` or `bundle exec steep`)",
"type": "string",
"default": ""
},
"steep.steepfile": {
"markdownDescription": "The value for `--steepfile` option of Steep Language Server.",
"type": "string",
"default": "Steepfile"
},
"steep.gemfile": {
"markdownDescription": "The value for `BUNDLE_GEMFILE` environment variable.",
"type": "string"
},
"steep.loglevel": {
"markdownDescription": "The value for `--log-level` option of Steep Language Server. You can see the output in `output` tab.",
"type": "string",
"enum": [
"error",
"warn",
"info",
"debug"
],
"default": "info"
},
"steep.jobs": {
"markdownDescription": "The value for `--jobs` option. This is the number of type-check workers of Steep Language Server.",
"type": ["integer", "null"],
"default": null,
"minimum": 1
},
"steep.enableYJIT": {
"markdownDescription": "Set `RUBY_YJIT_ENABLE` environment variable",
"type": "boolean",
"default": true
},
"steep.hideDiagnostics": {
"markdownDescription": "Hide diagnostics if its severity is lower than or equal to the option. Empty to disable this feature.",
"type": "string",
"enum": [
"",
"Error",
"Warning",
"Information"
],
"enumDescriptions": [
"Shows all diagnostics",
"Hides all diagnostics",
"Hides warning and information diagnostics",
"Hides information diagnostics"
],
"default": ""
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"package": "vsce package"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.10",
"@types/vscode": "^1.95.0",
"glob": "^11.0.1",
"mocha": "^11.1.0",
"tslint": "^6.1.3",
"typescript": "^5.8.2",
"@vscode/vsce": "^3.2.2",
"vscode-test": "^1.6.1"
},
"dependencies": {
"shell-args": "^1.0.0",
"vscode-languageclient": "^9.0.1"
}
}