-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "monaco-languageserver-types",
"version": "0.4.0",
"description": "Convert between language server types and Monaco editor types",
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"repository": "remcohaszing/monaco-languageserver-types",
"bugs": "https://github.com/remcohaszing/monaco-languageserver-types/issues",
"homepage": "https://github.com/remcohaszing/monaco-languageserver-types",
"author": "Remco Haszing <remcohaszing@gmail.com>",
"funding": "https://github.com/sponsors/remcohaszing",
"license": "MIT",
"keywords": [
"monaco",
"monaco-editor",
"lsp",
"language-server-protocol",
"vscode-languageserver-types"
],
"files": [
"dist",
"src"
],
"scripts": {
"prepack": "tsc --build",
"start": "vitest",
"test": "vitest --run --coverage"
},
"dependencies": {
"monaco-types": "^0.1.0",
"vscode-languageserver-protocol": "^3.0.0",
"vscode-uri": "^3.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^8.0.0",
"eslint-config-remcohaszing": "^10.0.0",
"jsdom": "^25.0.0",
"monaco-editor": "^0.52.0",
"remark-cli": "^12.0.0",
"remark-preset-remcohaszing": "^3.0.0",
"type-fest": "^4.0.0",
"vitest": "^2.0.0"
}
}