@nteract/monaco-editor
Version:
A React component for the monaco editor, tailored for nteract
118 lines (117 loc) • 2.78 kB
JSON
{
"name": "@nteract/monaco-editor",
"version": "5.0.7",
"description": "A React component for the monaco editor, tailored for nteract",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"nteractDesktop": "src/index.ts",
"scripts": {
"release": "semantic-release -e semantic-release-monorepo --tag-format='@nteract/monaco-editor@${version}'"
},
"keywords": [
"nteract",
"editor",
"notebook",
"jupyter",
"monaco"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/lodash": "^4.14.117",
"@types/lodash.debounce": "^4.0.6",
"styled-components": "^4.4.1"
},
"dependencies": {
"@nteract/core": "^15.0.0",
"@nteract/messaging": "^7.0.19",
"lodash.debounce": "^4.0.6",
"monaco-editor": "0.34.1",
"rxjs": "^6.3.3"
},
"peerDependencies": {
"immutable": "^4.0.0-rc.12",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"styled-components": ">= 4"
},
"author": "Kyle Kelley <rgbkrk@gmail.com>",
"license": "BSD-3-Clause",
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"header": "Release Notes",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
},
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"writerOpts": {
"commitsSort": [
"subject",
"scope"
]
}
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version}"
}
]
]
}
}