{
  "name": "vscode-json-languageservice",
  "version": "5.7.2",
  "description": "Language service for JSON",
  "main": "./lib/umd/jsonLanguageService.js",
  "typings": "./lib/umd/jsonLanguageService",
  "module": "./lib/esm/jsonLanguageService.js",
  "author": "Microsoft Corporation",
  "repository": {
    "type": "git",
    "url": "https://github.com/Microsoft/vscode-json-languageservice"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Microsoft/vscode-json-languageservice"
  },
  "devDependencies": {
    "@types/mocha": "^10.0.10",
    "@types/node": "22.x",
    "@typescript-eslint/eslint-plugin": "^8.56.0",
    "@typescript-eslint/parser": "^8.56.0",
    "eslint": "^9.39.3",
    "json-schema-test-suite": "https://github.com/json-schema-org/JSON-Schema-Test-Suite.git#69acf52990b004240839ae19b4bec8fb01d50876",
    "mocha": "^11.7.5",
    "rimraf": "^6.1.3",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "jsonc-parser": "^3.3.1",
    "vscode-languageserver-textdocument": "^1.0.12",
    "vscode-languageserver-types": "^3.17.5",
    "vscode-uri": "^3.1.0",
    "@vscode/l10n": "^0.0.18"
  },
  "scripts": {
    "prepack": "npm run clean && npm run compile-esm && npm run test && npm run remove-sourcemap-refs",
    "compile": "tsc -p ./src",
    "compile-esm": "tsc -p ./src/tsconfig.esm.json",
    "clean": "rimraf lib",
    "remove-sourcemap-refs": "node ./build/remove-sourcemap-refs.js",
    "watch": "tsc -w -p ./src",
    "pretest": "npm run compile",
    "test": "mocha",
    "posttest": "npm run lint",
    "coverage": "npx nyc -r lcov npm run test",
    "lint": "eslint src/**/*.ts",
    "install-types-next": "npm install vscode-languageserver-types@next -f -S && npm install vscode-languageserver-textdocument@next -f -S",
    "sample": "npm run compile && node ./lib/umd/example/sample.js"
  }
}
