{
  "name": "@xano/xanoscript-language-server",
  "version": "12.6.1",
  "description": "Language Server Protocol implementation for XanoScript",
  "type": "module",
  "main": "server.js",
  "files": [
    "server.js",
    "connection.js",
    "documents.js",
    "utils.js",
    "language-server-worker.js",
    "logic-assistant-script.js",
    "profile-parser.js",
    "cache/",
    "embedded/",
    "lexer/**/*.js",
    "onCheckError/",
    "onCompletion/contentAssist.js",
    "onCompletion/onCompletion.js",
    "onDefinition/onDefinition.js",
    "onDidChangeContent/",
    "onHover/",
    "onSemanticCheck/",
    "parser/**/*.js",
    "workspace/",
    "!**/*.spec.js",
    "!**/tests/",
    "!**/valid_sources/"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/xano-labs/xs-language-server.git"
  },
  "author": "Xano <support@xano.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/xano-labs/xs-language-server/issues"
  },
  "homepage": "https://github.com/xano-labs/xs-language-server#readme",
  "scripts": {
    "test-one": "mocha",
    "test": "mocha \"**/*.spec.js\"",
    "test-alt": "NODE_OPTIONS=\"--trace-warnings\" mocha --loader node \"*/**/*.spec.js\"",
    "lint": "eslint . --ext .js",
    "lint:fix": "eslint . --ext .js --fix",
    "tm": "node ./toTmLanguage.js",
    "prepare": "husky"
  },
  "dependencies": {
    "chevrotain": "^11.0.3",
    "lodash-es": "^4.17.21",
    "vscode-languageserver": "^9.0.1",
    "vscode-languageserver-textdocument": "^1.0.12"
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix"
    ]
  },
  "devDependencies": {
    "@eslint/js": "^9.22.0",
    "chai": "^5.2.0",
    "eslint": "^9.22.0",
    "eslint-plugin-simple-import-sort": "^12.1.1",
    "eslint-plugin-unused-imports": "^4.2.0",
    "globals": "^16.0.0",
    "husky": "^9.1.7",
    "lint-staged": "^16.2.4",
    "mocha": "^11.1.0"
  }
}
