monaco-editor-lc-comp
Version:
Lit Component for Monaco Languageclient
63 lines (62 loc) • 1.73 kB
JSON
{
"name": "monaco-editor-lc-comp",
"version": "0.2.4",
"license": "MIT",
"description": "Lit Component for Monaco Languageclient",
"keywords": [
"monaco-editor",
"monaco-languageclient",
"lit",
"web-component",
"typescript"
],
"type": "module",
"main": "./dist/monaco-editor-lc-comp.js",
"module": "./dist/monaco-editor-lc-comp.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/monaco-editor-lc-comp.js",
"types": "./dist/src/index.d.ts"
}
},
"files": [
"dist/src",
"dist/monaco-editor-lc-comp*.js",
"dist/style.css",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "shx rm -rf ./dist",
"dev": "vite",
"lint": "eslint src",
"copy-ttf": "shx cp ../../node_modules/monaco-editor-core/min/vs/base/browser/ui/codicons/codicon/codicon.ttf ./dist",
"build": "npm run clean && tsc && vite build && npm run copy-ttf",
"serve": "tsc && vite preview"
},
"dependencies": {
"monaco-editor-core": "^0.33.0",
"monaco-languageclient": "^0.18.1",
"@codingame/monaco-jsonrpc": "^0.3.1",
"lit": "^2.2.1",
"normalize-url": "^7.0.3"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/vscode": "^1.65.0",
"@types/glob-to-regexp": "^0.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/TypeFox/monaco-components",
"directory": "packages/monaco-editor-lc-comp"
},
"homepage": "https://github.com/TypeFox/monaco-components/blob/main/packages/monaco-editor-lc-comp/README.md",
"bugs": "https://github.com/TypeFox/monaco-components/issues",
"author": {
"name": "TypeFox",
"url": "https://www.typefox.io"
}
}