mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-05-19 04:08:48 +00:00
59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"name": "monaco-yaml",
|
|
"version": "2.5.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 && mcopy ./src/monaco.d.ts ./lib/monaco.d.ts",
|
|
"build": "npm run compile && npm run bundle",
|
|
"prepare": "husky install",
|
|
"lint": "prettier --check ."
|
|
},
|
|
"main": "./lib/esm/monaco.contribution.js",
|
|
"module": "./lib/esm/monaco.contribution.js",
|
|
"typings": "./lib/monaco.d.ts",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"workspaces": [
|
|
"examples/*"
|
|
],
|
|
"author": "Kevin Decker <kpdecker@gmail.com> (http://incaseofstairs.com)",
|
|
"maintainers": [
|
|
"kpdecker",
|
|
"pengx17"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/pengx17/monaco-yaml"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/pengx17/monaco-yaml/issues"
|
|
},
|
|
"dependencies": {
|
|
"js-yaml": "^3.14.1",
|
|
"yaml-ast-parser-custom-tags": "^0.0.43"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^7.0.1",
|
|
"lint-staged": "^10.5.4",
|
|
"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"
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"trailingComma": "es5",
|
|
"semi": true
|
|
},
|
|
"lint-staged": {
|
|
"*.{css,json,md,html,ts,js,jsx,yaml}": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|