-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.77 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
{
"name": "@node-projects/monaco-editor-esm",
"version": "0.55.1",
"description": "A real ESM (EcmaScript Module) build of the Monaco Editor, suitable for modern build tools and direct browser usage. This package provides the Monaco Editor as native JavaScript modules in the /esm directory, and all required CSS in /min.\n\nNote: Due to current browser and JavaScript limitations, CSS imports in ESM modules are not natively supported in all environments. You may need to handle CSS loading manually or with a bundler. See README for details.",
"keywords": [
"monaco",
"esm"
],
"homepage": "https://github.com/node-projects/monaco-editor-esm#readme",
"bugs": {
"url": "https://github.com/node-projects/monaco-editor-esm/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-projects/monaco-editor-esm.git"
},
"license": "MIT",
"author": "Jochen Kühner",
"type": "module",
"main": "./esm/vs/editor/editor.main.min.js",
"style": "./min/vs/editor/editor.main.css/editor.main.css",
"scripts": {
"build": "node _patchAndMinifyMonaco.js"
},
"devDependencies": {
"esbuild": "^0.28.0",
"monaco-editor": "^0.55.1"
}
,
"files": [
"min/",
"esm/"
],
"exports": {
".": {
"import": "./esm/vs/editor/editor.main.min.js"
},
"./esm/vs/editor/editor.main.js": "./esm/vs/editor/editor.main.js",
"./esm/vs/editor/editor.api.js": "./esm/vs/editor/editor.api.js",
"./esm/vs/editor/editor.api2.js": "./esm/vs/editor/editor.api2.js",
"./esm/vs/editor/editor.worker.js": "./esm/vs/editor/editor.worker.js",
"./esm/vs/language/*": "./esm/vs/language/*",
"./esm/vs/basic-languages/*": "./esm/vs/basic-languages/*",
"./min/vs/editor/editor.main.css": "./min/vs/editor/editor.main.css"
}
}