{
  "name": "@wix/wix-code-lsp-server",
  "version": "1.0.24",
  "description": "WebSocket-based TypeScript Language Server Protocol server",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": "dist/bin/server.cjs",
  "scripts": {
    "build": "npm run build:esbuild && npm run build:types",
    "build:esbuild": "node esbuild.config.js",
    "build:types": "tsc --emitDeclarationOnly",
    "dev": "npm run build:esbuild -- --watch",
    "start": "node dist/bin/server.cjs",
    "start:dev": "npm run build && node dist/bin/server.cjs",
    "test": "jest --passWithNoTests",
    "test:unit": "jest --testPathIgnorePatterns=e2e",
    "test:e2e": "jest --config jest.e2e.config.js",
    "lint": "eslint src tests --ext .ts",
    "format": "prettier --write src tests",
    "clean": "rm -rf dist"
  },
  "keywords": [
    "lsp-server",
    "websocket",
    "typescript",
    "language-server",
    "code-editor"
  ],
  "author": "Nir Sharav",
  "email": "nirsh@wix.com",
  "license": "MIT",
  "dependencies": {
    "commander": "^11.0.0",
    "monaco-languageclient": "^9.8.0",
    "pino": "^8.15.0",
    "typescript-language-server": "^4.3.4",
    "uuid": "^9.0.0",
    "vscode-jsonrpc": "^8.2.1",
    "vscode-ws-jsonrpc": "^3.4.0",
    "ws": "^8.18.2"
  },
  "devDependencies": {
    "@types/jest": "^27.4.0",
    "@types/node": "^16.0.0",
    "@types/uuid": "^9.0.0",
    "@types/ws": "^8.18.1",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "@wix/panorama-client-node": "^3.234.0",
    "esbuild": "^0.19.0",
    "eslint": "^8.0.0",
    "jest": "^27.4.0",
    "prettier": "^3.0.0",
    "ts-jest": "^29.1.0",
    "typescript": "5.9.3"
  },
  "wix": {
    "artifact": {
      "groupId": "com.wixpress",
      "artifactId": "wix-code-lsp-server"
    }
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "files": [
    "dist/**/*",
    "README.md"
  ],
  "falconPackageHash": "e8c20c308623881c3e89a41b7c52bc551682c57a463a94d7cdf1a94d"
}