mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-05-19 04:08:48 +00:00
Most notably update to Webpack 5. Webpack 5 supports web workers without the need of a loader, so the `webpack-worker-loader` example has been removed.
66 lines
1.7 KiB
JSON
66 lines
1.7 KiB
JSON
{
|
|
"name": "monaco-yaml",
|
|
"version": "3.0.0",
|
|
"description": "YAML plugin for the Monaco Editor",
|
|
"scripts": {
|
|
"watch": "tsc -p ./src --watch",
|
|
"compile": "rimraf ./out && tsc",
|
|
"bundle": "rimraf ./lib && node ./scripts/bundle-esm",
|
|
"prepack": "npm run compile && npm run bundle",
|
|
"prepare": "husky install",
|
|
"lint": "eslint . && prettier --check ."
|
|
},
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"@types/json-schema": "^7.0.9",
|
|
"js-yaml": "^3.14.1",
|
|
"yaml-ast-parser-custom-tags": "^0.0.43"
|
|
},
|
|
"peerDependencies": {
|
|
"monaco-editor": ">=0.22"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^4.29.0",
|
|
"@typescript-eslint/parser": "^4.29.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-remcohaszing": "^3.5.0",
|
|
"husky": "^7.0.1",
|
|
"lint-staged": "^11.1.1",
|
|
"monaco-editor": "^0.26.1",
|
|
"monaco-plugin-helpers": "^1.0.3",
|
|
"prettier": "2.0.5",
|
|
"rimraf": "^3.0.2",
|
|
"typescript": "^4.3.5",
|
|
"yaml-language-server": "^0.11.1"
|
|
},
|
|
"resolutions": {},
|
|
"lint-staged": {
|
|
"*.{css,json,md,html,yaml}": [
|
|
"prettier --write"
|
|
],
|
|
"*.{js,ts}": [
|
|
"eslint"
|
|
]
|
|
}
|
|
}
|