UNPKG

monaco-editor-comp

Version:
90 lines (89 loc) 2.27 kB
{ "name": "monaco-editor-comp", "version": "1.6.0", "license": "MIT", "description": "Lit Component for Monaco-Editor and Monaco Languageclient Wrapper", "keywords": [ "monaco-editor", "monaco-languageclient", "lit", "web-component", "typescript" ], "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./allLanguages": { "types": "./dist/indexAllLanguages.d.ts", "default": "./dist/indexAllLanguages.js" }, "./bundle": { "types": "./dist/index.d.ts", "default": "./bundle/index.js" }, "./bundle/allLanguages": { "types": "./dist/indexAllLanguages.d.ts", "default": "./bundle/indexAllLanguages.js" } }, "typesVersions": { "*": { ".": [ "dist/index" ], "allLanguages": [ "dist/indexAllLanguages" ], "bundle": [ "dist/index" ], "bundle/allLanguages": [ "dist/indexAllLanguages" ] } }, "files": [ "dist", "bundle", "src", "LICENSE", "README.md" ], "scripts": { "clean": "npx shx rm -rf ./dist ./bundle tsconfig.tsbuildinfo", "lint": "eslint src --ext .ts", "compile": "tsc", "watch": "tsc -w", "build:bundle:main": "vite --config vite.bundle.config.ts build", "build:bundle:languages": "vite --config vite.languages.config.ts build", "build:bundle": "npm run build:bundle:main && npm run build:bundle:languages", "build": "npm run clean && npm run compile && npm run build:bundle" }, "volta": { "node": "16.18.1", "npm": "8.19.3" }, "dependencies": { "monaco-editor-wrapper": "1.6.0", "lit": "~2.5.0" }, "devDependencies": { "monaco-editor-workers": "0.34.2" }, "repository": { "type": "git", "url": "https://github.com/TypeFox/monaco-components", "directory": "packages/monaco-editor-comp" }, "homepage": "https://github.com/TypeFox/monaco-components/blob/main/packages/monaco-editor-comp/README.md", "bugs": "https://github.com/TypeFox/monaco-components/issues", "author": { "name": "TypeFox", "url": "https://www.typefox.io" } }