-
-
Notifications
You must be signed in to change notification settings - Fork 216
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.9 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 4.9 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
127
128
129
130
{
"name": "monaco-languageclient",
"version": "11.0.0-next.2",
"description": "Monaco Language client implementation",
"homepage": "https://github.com/TypeFox/monaco-languageclient/blob/main/packages/client/README.md",
"bugs": {
"url": "https://github.com/TypeFox/monaco-languageclient/issues"
},
"license": "MIT",
"author": {
"name": "TypeFox GmbH",
"url": "https://www.typefox.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TypeFox/monaco-languageclient.git",
"directory": "packages/client"
},
"files": [
"lib",
"src",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"default": "./lib/index.js"
},
"./common": {
"types": "./lib/common/index.d.ts",
"import": "./lib/common/index.js",
"default": "./lib/common/index.js"
},
"./vscodeApiWrapper": {
"types": "./lib/vscode/index.d.ts",
"import": "./lib/vscode/index.js",
"default": "./lib/vscode/index.js"
},
"./vscodeApiLocales": {
"types": "./lib/vscode/locales.d.ts",
"import": "./lib/vscode/locales.js",
"default": "./lib/vscode/locales.js"
},
"./fs": {
"types": "./lib/fs/index.d.ts",
"import": "./lib/fs/index.js",
"default": "./lib/fs/index.js"
},
"./workerFactory": {
"types": "./lib/worker/index.d.ts",
"import": "./lib/worker/index.js",
"default": "./lib/worker/index.js"
},
"./lcwrapper": {
"types": "./lib/wrapper/index.d.ts",
"import": "./lib/wrapper/index.js",
"default": "./lib/wrapper/index.js"
},
"./editorApp": {
"types": "./lib/editorApp/index.d.ts",
"import": "./lib/editorApp/index.js",
"default": "./lib/editorApp/index.js"
},
"./debugger": {
"types": "./lib/debugger/index.d.ts",
"import": "./lib/debugger/index.js",
"default": "./lib/debugger/index.js"
}
},
"scripts": {
"clean": "shx rm -fr ./lib *.tsbuildinfo",
"compile": "tsc --build tsconfig.src.json",
"build:msg": "echo Building monaco-languageclient:",
"build": "npm run build:msg && npm run clean && npm run compile"
},
"dependencies": {
"@codingame/monaco-vscode-api": "^36.0.0",
"@codingame/monaco-vscode-configuration-service-override": "^36.0.0",
"@codingame/monaco-vscode-editor-api": "^36.0.0",
"@codingame/monaco-vscode-editor-service-override": "^36.0.0",
"@codingame/monaco-vscode-extensions-service-override": "^36.0.0",
"@codingame/monaco-vscode-files-service-override": "^36.0.0",
"@codingame/monaco-vscode-language-pack-cs": "^36.0.0",
"@codingame/monaco-vscode-language-pack-de": "^36.0.0",
"@codingame/monaco-vscode-language-pack-es": "^36.0.0",
"@codingame/monaco-vscode-language-pack-fr": "^36.0.0",
"@codingame/monaco-vscode-language-pack-it": "^36.0.0",
"@codingame/monaco-vscode-language-pack-ja": "^36.0.0",
"@codingame/monaco-vscode-language-pack-ko": "^36.0.0",
"@codingame/monaco-vscode-language-pack-pl": "^36.0.0",
"@codingame/monaco-vscode-language-pack-pt-br": "^36.0.0",
"@codingame/monaco-vscode-language-pack-qps-ploc": "^36.0.0",
"@codingame/monaco-vscode-language-pack-ru": "^36.0.0",
"@codingame/monaco-vscode-language-pack-tr": "^36.0.0",
"@codingame/monaco-vscode-language-pack-zh-hans": "^36.0.0",
"@codingame/monaco-vscode-language-pack-zh-hant": "^36.0.0",
"@codingame/monaco-vscode-languages-service-override": "^36.0.0",
"@codingame/monaco-vscode-localization-service-override": "^36.0.0",
"@codingame/monaco-vscode-log-service-override": "^36.0.0",
"@codingame/monaco-vscode-model-service-override": "^36.0.0",
"@codingame/monaco-vscode-monarch-service-override": "^36.0.0",
"@codingame/monaco-vscode-textmate-service-override": "^36.0.0",
"@codingame/monaco-vscode-theme-defaults-default-extension": "^36.0.0",
"@codingame/monaco-vscode-theme-service-override": "^36.0.0",
"@codingame/monaco-vscode-views-service-override": "^36.0.0",
"@codingame/monaco-vscode-workbench-service-override": "^36.0.0",
"vscode": "npm:@codingame/monaco-vscode-extension-api@^36.0.0",
"vscode-languageclient": "~10.1.0",
"vscode-languageserver-protocol": "~3.18.2",
"vscode-ws-jsonrpc": "~4.0.0-next.2"
},
"devDependencies": {
"@codingame/monaco-vscode-standalone-css-language-features": "^36.0.0",
"@codingame/monaco-vscode-standalone-html-language-features": "^36.0.0",
"@codingame/monaco-vscode-standalone-json-language-features": "^36.0.0",
"@codingame/monaco-vscode-standalone-languages": "^36.0.0",
"@codingame/monaco-vscode-standalone-typescript-language-features": "^36.0.0",
"monaco-languageclient-examples": "../examples"
},
"engines": {
"node": ">=22",
"npm": ">=10"
}
}