{
  "name": "monaco-xsd-code-completion",
  "version": "1.1.1",
  "description": "A library to add XSD-based code completion and validation to the Monaco Editor.",
  "main": "dist/MonacoXsdCodeCompletion.umd.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/philipsens/monaco-xsd-code-completion.git"
  },
  "files": [
    "esm",
    "lib",
    "umd",
    "src"
  ],
  "keywords": [
    "xml",
    "xsd",
    "monaco",
    "intelliSense",
    "code completion",
    "validation"
  ],
  "author": "Sergi Philipsen <philipsen.sergi@gmail.com> (https://philipsens.nl)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/philipsens/monaco-xsd-code-completion/issues"
  },
  "homepage": "https://github.com/philipsens/monaco-xsd-code-completion#readme",
  "dependencies": {
    "@xmldom/xmldom": "^0.8.11",
    "prettier": "^3.8.1",
    "ts-debounce": "^4.0.0",
    "turndown": "^7.2.2"
  },
  "devDependencies": {
    "@types/turndown": "^5.0.5",
    "@typescript-eslint/eslint-plugin": "^7.18.0",
    "@typescript-eslint/parser": "^7.18.0",
    "css-loader": "^7.1.4",
    "eslint": "^9.26.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.5.5",
    "monaco-editor": "^0.55.1",
    "monaco-editor-core": "^0.55.1",
    "npm-run-all2": "^8.0.4",
    "pretty-quick": "^4.2.2",
    "rimraf": "^6.1.3",
    "style-loader": "^4.0.0",
    "ts-loader": "^9.5.4",
    "typescript": "^5.9.3",
    "webpack": "^5.105.4",
    "webpack-cli": "^6.0.1",
    "webpack-node-externals": "^3.0.0"
  },
  "resolutions": {
    "dompurify": ">=3.3.2",
    "ajv": "^8.17.1",
    "brace-expansion": "^2.0.1",
    "braces": "^3.0.3",
    "cross-spawn": "^7.0.6",
    "glob-parent": "^6.0.2",
    "lodash": "^4.17.21",
    "micromatch": "^4.0.8",
    "minimist": "^1.2.8",
    "semver": "^7.6.3"
  },
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:umd": "webpack",
    "watch:cjs": "tsc -p tsconfig.cjs.json --watch",
    "watch:esm": "tsc -p tsconfig.esm.json --watch",
    "watch:umd": "webpack --watch",
    "clean": "rimraf ./lib ./esm ./umd",
    "build": "npm-run-all clean build:cjs build:esm build:umd"
  }
}