mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-05-19 04:08:48 +00:00
74 lines
1.8 KiB
JSON
74 lines
1.8 KiB
JSON
{
|
|
"name": "monaco-yaml",
|
|
"version": "3.2.1",
|
|
"description": "YAML plugin for the Monaco Editor",
|
|
"homepage": "https://monaco-yaml.js.org",
|
|
"scripts": {
|
|
"prepack": "node build.js",
|
|
"prepare": "husky install"
|
|
},
|
|
"main": "./lib/esm/monaco.contribution.js",
|
|
"module": "./lib/esm/monaco.contribution.js",
|
|
"typings": "./index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"index.d.ts"
|
|
],
|
|
"workspaces": [
|
|
"examples/*"
|
|
],
|
|
"author": "Kevin Decker <kpdecker@gmail.com> (http://incaseofstairs.com)",
|
|
"maintainers": [
|
|
"Remco Haszing <remcohaszing@gmail.com> (https://github.com/remcohaszing)"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/remcohaszing/monaco-yaml"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/remcohaszing/monaco-yaml/issues"
|
|
},
|
|
"keywords": [
|
|
"editor",
|
|
"frontend",
|
|
"front-end",
|
|
"monaco",
|
|
"monaco-editor",
|
|
"yaml"
|
|
],
|
|
"dependencies": {
|
|
"@types/json-schema": "^7.0.0",
|
|
"js-yaml": "^4.0.0",
|
|
"path-browserify": "^1.0.0",
|
|
"prettier": "2.0.5",
|
|
"vscode-languageserver-textdocument": "^1.0.0",
|
|
"vscode-languageserver-types": "^3.0.0",
|
|
"yaml-language-server-parser": "^0.1.0"
|
|
},
|
|
"peerDependencies": {
|
|
"monaco-editor": ">=0.22"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^4.0.0",
|
|
"@typescript-eslint/parser": "^4.0.0",
|
|
"esbuild": "^0.12.0",
|
|
"eslint": "^7.0.0",
|
|
"eslint-config-remcohaszing": "^3.0.0",
|
|
"husky": "^7.0.0",
|
|
"lint-staged": "^11.0.0",
|
|
"monaco-editor": "^0.27.0",
|
|
"type-fest": "^2.0.0",
|
|
"typescript": "^4.0.0",
|
|
"yaml-language-server": "^0.22.0"
|
|
},
|
|
"resolutions": {},
|
|
"lint-staged": {
|
|
"*.{css,json,md,html,yaml}": [
|
|
"prettier --write"
|
|
],
|
|
"*.{js,ts}": [
|
|
"eslint"
|
|
]
|
|
}
|
|
}
|