{
  "name": "lezer-template-json",
  "description": "A Lezer grammar for parsing template JSON",
  "private": false,
  "version": "0.1.4",
  "type": "module",
  "files": [
    "dist",
    "src/*.grammar"
  ],
  "main": "./dist/cjs/index.js",
  "module": "./dist/es/index.js",
  "exports": {
    ".": {
      "import": "./dist/es/index.js",
      "require": "./dist/cjs/index.js",
      "default": "./dist/es/index.js"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Sec-ant/lezer-template-json.git"
  },
  "homepage": "https://github.com/Sec-ant/lezer-template-json",
  "bugs": {
    "url": "https://github.com/Sec-ant/lezer-template-json/issues",
    "email": "zezhengwu@proton.me"
  },
  "keywords": [
    "lezer",
    "grammar",
    "json",
    "template",
    "parser",
    "syntax-highlighting",
    "codemirror"
  ],
  "author": {
    "name": "Ze-Zheng Wu"
  },
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@biomejs/biome": "2.1.3",
    "@changesets/cli": "^2.29.5",
    "@codemirror/language": "^6.11.2",
    "@codemirror/view": "^6.38.1",
    "@lezer/common": "^1.2.3",
    "@lezer/highlight": "^1.2.1",
    "@lezer/lr": "^1.4.2",
    "@types/node": "^24.2.0",
    "@vitest/ui": "^3.2.4",
    "codemirror": "^6.0.2",
    "concurrently": "^9.2.0",
    "lint-staged": "^16.1.4",
    "prettier": "^3.6.2",
    "pretty-quick": "^4.2.2",
    "rimraf": "^6.0.1",
    "simple-git-hooks": "^2.13.1",
    "tsx": "^4.20.3",
    "typescript": "^5.9.2",
    "unplugin-lezer": "^1.0.1",
    "vite": "^7.0.6",
    "vitest": "^3.2.4"
  },
  "peerDependencies": {
    "@lezer/common": "^1.0.0",
    "@lezer/highlight": "^1.0.0",
    "@lezer/lr": "^1.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "update-hooks": "simple-git-hooks",
    "clean": "rimraf dist",
    "lint": "biome lint .",
    "format:prettier": "pretty-quick",
    "format:biome": "biome format . --write",
    "format": "pnpm -s format:prettier && pnpm -s format:biome",
    "type-check": "tsc --noEmit",
    "check:biome": "biome check --write .",
    "check": "pnpm -s format:prettier && pnpm -s check:biome",
    "prebuild": "pnpm -s check && pnpm -s type-check",
    "dev": "vite",
    "build:es": "vite build",
    "build:cjs": "tsx ./scripts/build-cjs.ts",
    "build": "conc \"pnpm:build:es\" \"pnpm:build:cjs\"",
    "postbuild:es": "tsc --declarationDir ./dist/es",
    "postbuild:cjs": "tsc --declarationDir ./dist/cjs",
    "postbuild": "tsx ./scripts/post-process-types.ts",
    "preview": "vite preview",
    "test": "vitest",
    "test:ui": "vitest --ui",
    "test:run": "vitest run"
  }
}