{
  "name": "jsdoc-type-pratt-parser",
  "version": "7.2.0",
  "description": "",
  "type": "module",
  "main": "dist/esm/index.js",
  "exports": {
    ".": {
      "browser": "./dist/index.umd.js",
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "directories": {
    "test": "test"
  },
  "scripts": {
    "test": "npm run typecheck && npm run lint && npm run test:spec",
    "test:spec": "mocha",
    "test:coverage": "c8 --all npm run test:spec",
    "test:coveralls": "c8 report --reporter=lcov && coveralls",
    "lint": "eslint .",
    "typecheck": "tsc --noEmit",
    "attw": "attw --pack .",
    "build": "tsup src/index.ts --format cjs --dts && tsup src/index.ts --format esm --outDir dist/esm --dts && rollup -c && npm run attw",
    "apidoc": "typedoc --options typedoc.json",
    "preversion": "npm test",
    "prepublishOnly": "npm run build",
    "semantic-release": "semantic-release",
    "benchmark": "npm run build && node benchmark/benchmark.js",
    "upgrade": "npm-upgrade"
  },
  "author": "Simon Seyock (https://github.com/simonseyock)",
  "contributors": [
    "Brett Zamir"
  ],
  "license": "MIT",
  "engines": {
    "node": ">=20.0.0"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.18.2",
    "@es-joy/escodegen": "^4.2.0",
    "@rollup/plugin-typescript": "^12.3.0",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@swc/core": "^1.15.21",
    "@types/chai": "^5.2.3",
    "@types/estree": "^1.0.8",
    "@types/mocha": "^10.0.10",
    "@types/node": "^25.5.0",
    "@types/sinon": "^21.0.0",
    "@types/sinon-chai": "^4.0.0",
    "@typescript-eslint/eslint-plugin": "^8.42.0",
    "benchmark": "^2.1.4",
    "c8": "^11.0.0",
    "catharsis": "^0.10.0",
    "chai": "^6.2.2",
    "coveralls": "^3.1.1",
    "eslint": "^9.39.4",
    "eslint-config-love": "151.0.0",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-n": "^17.24.0",
    "eslint-plugin-promise": "^7.2.1",
    "espree": "^11.2.0",
    "jsdoctypeparser": "^9.0.0",
    "mocha": "^11.7.5",
    "npm-upgrade": "^3.1.2",
    "patch-package": "^8.0.1",
    "rollup": "^4.60.1",
    "semantic-release": "^25.0.3",
    "sinon": "^21.0.3",
    "sinon-chai": "^4.0.1",
    "ts-node": "^10.9.2",
    "tsup": "^8.5.1",
    "typedoc": "^0.28.18",
    "typedoc-plugin-merge-modules": "^7.0.0",
    "typescript": "^5.9.3"
  },
  "ts-standard": {
    "ignore": [
      "/submodules/",
      "/build/",
      "/pages/"
    ]
  },
  "files": [
    "dist/**/*",
    "src/**/*"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/jsdoc-type-pratt-parser/jsdoc-type-pratt-parser.git"
  },
  "bugs": "https://github.com/jsdoc-type-pratt-parser/jsdoc-type-pratt-parser/issues",
  "homepage": "https://github.com/jsdoc-type-pratt-parser/jsdoc-type-pratt-parser",
  "keywords": [
    "jsdoc",
    "pratt",
    "parser"
  ],
  "release": {
    "branches": [
      "main",
      {
        "name": "dev",
        "prerelease": true
      }
    ],
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/github",
      "@semantic-release/npm",
      "@semantic-release/release-notes-generator",
      "@semantic-release/changelog",
      "@semantic-release/git"
    ]
  },
  "publishConfig": {
    "access": "public"
  }
}
