{
  "name": "langium-cli",
  "version": "3.4.0",
  "description": "CLI for Langium - the language engineering tool",
  "homepage": "https://langium.org",
  "engines": {
    "node": ">=18.0.0"
  },
  "keywords": [
    "cli",
    "dsl",
    "lsp",
    "vscode",
    "typescript"
  ],
  "license": "MIT",
  "files": [
    "bin",
    "lib",
    "src",
    "langium-config-schema.json"
  ],
  "bin": {
    "langium": "./bin/langium.js"
  },
  "exports": {
    ".": {
      "import": "./lib/index.js",
      "types": "./lib/index.d.ts"
    },
    "./textmate": {
      "import": "./lib/generator/highlighting/textmate-generator.js",
      "types": "./lib/generator/highlighting/textmate-generator.d.ts"
    }
  },
  "type": "module",
  "scripts": {
    "clean": "shx rm -rf lib coverage",
    "build": "tsc",
    "watch": "tsc --watch",
    "lint": "eslint src test --ext .ts",
    "publish:next": "npm --no-git-tag-version version \"$(semver $npm_package_version -i minor)-next.$(git rev-parse --short HEAD)\" && npm publish --tag next",
    "publish:latest": "npm publish --tag latest --access public"
  },
  "dependencies": {
    "chalk": "~5.3.0",
    "commander": "~11.0.0",
    "fs-extra": "~11.1.1",
    "jsonschema": "~1.4.1",
    "langium": "~3.4.0",
    "langium-railroad": "~3.4.0",
    "lodash": "~4.17.21"
  },
  "devDependencies": {
    "@types/fs-extra": "~11.0.1"
  },
  "volta": {
    "node": "18.19.1",
    "npm": "10.2.4"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/eclipse-langium/langium",
    "directory": "packages/langium-cli"
  },
  "bugs": "https://github.com/eclipse-langium/langium/issues",
  "author": {
    "name": "TypeFox",
    "url": "https://www.typefox.io"
  }
}
