{
  "name": "typescript-language-server",
  "version": "5.1.3",
  "description": "Language Server Protocol (LSP) implementation for TypeScript using tsserver",
  "author": "TypeFox and others",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/typescript-language-server/typescript-language-server.git"
  },
  "type": "module",
  "engines": {
    "node": ">=20"
  },
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
  "files": [
    "lib"
  ],
  "bin": {
    "typescript-language-server": "./lib/cli.mjs"
  },
  "scripts": {
    "dev": "rimraf lib && rollup --config rollup.config.ts --configPlugin typescript --watch",
    "build": "rimraf lib && rollup --config rollup.config.ts --configPlugin typescript",
    "clean": "rimraf lib *.tsbuildinfo",
    "test": "cross-env CONSOLE_LOG_LEVEL=warning vitest",
    "test:commit": "cross-env CONSOLE_LOG_LEVEL=warning vitest run",
    "lint": "eslint --ext \".js,.ts\" src",
    "fix": "eslint --ext \".js,.ts\" --fix src",
    "size": "yarn build && yarn size-limit",
    "postversion": "git push --follow-tags",
    "prepare": "cd test-data/jsx && yarn"
  },
  "eslintIgnore": [
    "!.eslintrc.cjs"
  ],
  "husky": {
    "hooks": {
      "pre-commit": "concurrently -n build,lint,test \"yarn build\" \"yarn lint\" \"yarn test:commit\"",
      "post-merge": "yarn"
    }
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^28.0.9",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^12.3.0",
    "@size-limit/file": "^11.2.0",
    "@stylistic/eslint-plugin": "^5.5.0",
    "@types/fs-extra": "^11.0.4",
    "@types/node": "^20.19.24",
    "@types/semver": "^7.7.1",
    "@types/which": "^3.0.4",
    "@vitest/eslint-plugin": "^1.4.0",
    "commander": "^14.0.2",
    "concurrently": "^9.2.1",
    "cross-env": "^10.1.0",
    "deepmerge": "^4.3.1",
    "eslint": "^9.38.0",
    "fs-extra": "^11.3.2",
    "husky": "4.3.8",
    "p-debounce": "^5.1.0",
    "package-up": "^5.0.0",
    "rimraf": "^6.1.0",
    "rollup": "^4.52.5",
    "semver": "^7.7.3",
    "size-limit": "^11.2.0",
    "source-map-support": "^0.5.21",
    "tempy": "^3.1.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.46.2",
    "vitest": "^4.0.5",
    "vscode-jsonrpc": "^8.2.1",
    "vscode-languageserver": "^9.0.1",
    "vscode-languageserver-protocol": "^3.17.5",
    "vscode-languageserver-textdocument": "1.0.12",
    "vscode-uri": "^3.1.0",
    "which": "^5.0.0",
    "why-is-node-running": "^3.2.2"
  },
  "resolutions": {
    "vscode-jsonrpc": "^8.2.1"
  }
}
