{
  "name": "jsonpath-rfc9535",
  "version": "1.3.0",
  "description": "A JSONPath implementation based on RFC 9535",
  "keywords": [
    "json",
    "jsonpath",
    "rfc9535"
  ],
  "homepage": "https://github.com/P0lip/jsonpath-rfc9535",
  "bugs": {
    "url": "https://github.com/P0lip/jsonpath-rfc9535/issues"
  },
  "engines": {
    "node": ">=20"
  },
  "files": [
    "src",
    "dist"
  ],
  "type": "module",
  "types": "./dist/esm/index.d.ts",
  "module": "./dist/esm/index.js",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/commonjs/index.d.ts",
        "default": "./dist/commonjs/index.js"
      }
    },
    "./package.json": "./package.json",
    "./parser": {
      "import": {
        "types": "./dist/esm/parser/index.d.ts",
        "default": "./dist/esm/parser/index.js"
      },
      "require": {
        "types": "./dist/commonjs/parser/index.d.ts",
        "default": "./dist/commonjs/parser/index.js"
      }
    }
  },
  "sideEffects": false,
  "license": "Apache-2.0",
  "author": "P0lip",
  "repository": {
    "type": "git",
    "url": "https://github.com/P0lip/jsonpath-rfc9535"
  },
  "scripts": {
    "build:esm": "tsc --outDir dist/esm && echo '{\"type\":\"module\"}' > dist/esm/package.json",
    "build:cjs": "tsc --project tsconfig.cjs.json --outDir dist/commonjs && echo '{\"type\":\"commonjs\"}' > dist/commonjs/package.json",
    "build": "npm run build:esm && npm run build:cjs",
    "build.parser": "peggy src/parser/grammars/grammar.peggy --output src/parser/parser.js --format es --dts",
    "lint": "npx @biomejs/biome check",
    "type-check": "tsc --noEmit",
    "test": "node --test --experimental-strip-types --experimental-test-coverage --test-reporter=lcov --test-reporter=dot --test-reporter-destination=lcov.info --test-reporter-destination=stdout",
    "prepare": "husky"
  },
  "devDependencies": {
    "@biomejs/biome": "1.9.4",
    "husky": "^9.0.10",
    "peggy": "^4.2.0",
    "typescript": "^5.7.2"
  },
  "packageManager": "npm@10.9.2+sha512.8ab88f10f224a0c614cb717a7f7c30499014f77134120e9c1f0211ea3cf3397592cbe483feb38e0c4b3be1c54e347292c76a1b5edb94a3289d5448484ab8ac81"
}
