{
  "name": "@decimalturn/toml-patch",
  "version": "3.1.2",
  "contributors": [
    "Tim Hall <tim.hall.engr@gmail.com>",
    "Martin Leduc <31558169+DecimalTurn@users.noreply.github.com>"
  ],
  "license": "MIT",
  "description": "Patch, parse, and stringify TOML while preserving comments, whitespace and formatting.",
  "homepage": "https://github.com/DecimalTurn/toml-patch",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DecimalTurn/toml-patch.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "toml",
    "patch",
    "edit",
    "parse",
    "stringify",
    "parser",
    "encoder",
    "decoder",
    "preserve-whitespace",
    "preserve-comments",
    "preserve-formatting",
    "edit-in-place"
  ],
  "engines": {
    "node": ">=16"
  },
  "type": "module",
  "sideEffects": false,
  "types": "./dist/toml-patch.d.ts",
  "exports": {
    ".": {
      "types": "./dist/toml-patch.d.ts",
      "import": "./dist/toml-patch.js",
      "default": "./dist/toml-patch.js"
    }
  },
  "devDependencies": {
    "@decimalturn/toml-patch": "npm:@decimalturn/toml-patch@3.1.0",
    "@js-temporal/polyfill": "^0.5.1",
    "@playwright/test": "^1.59.1",
    "@types/dedent": "^0.7.2",
    "@types/js-yaml": "^4.0.0",
    "@types/node": "^24.12.3",
    "benchmark": "^2",
    "dedent": "^1.5.3",
    "glob": "^13.0.0",
    "js-yaml": "4.3.2",
    "jsr": "^0.14.0",
    "mri": "^1",
    "npm-run-all2": "^9.0.0",
    "oxlint": "^1.55.0",
    "rimraf": "^6.0.0",
    "smol-toml": "^1.6.1",
    "tsdown": "^0.23.0",
    "tslib": "^2.0.0",
    "typescript": "7.0.2",
    "vitest": "^5.0.0"
  },
  "prettier": {
    "singleQuote": true,
    "printWidth": 100
  },
  "files": [
    "dist/toml-patch.*"
  ],
  "json-comments": {
    "tips": "Please install the JsonComments plugin to enable commenting functionality for JSON files, see: https://github.com/zhangfisher/json_comments_extension",
    "package.json": {
      "devDependencies.js-yaml": "Used by specs/specs.test.ts to parse YAML expected-value fixtures from submodules/spec-tests (https://github.com/iarna/toml-spec-tests)."
    }
  },
  "scripts": {
    "dev": "pnpm run typecheck && pnpm run build && npm-run-all2 --parallel test:all specs",
    "test": "vitest run",
    "test:output": "node scripts/test-debug.mjs",
    "test:js": "vitest run --config vitest.js.config.ts",
    "test:watch": "vitest",
    "test:go": "./run-toml-test.bash",
    "test:playwright": "playwright test",
    "playwright:install": "playwright install --with-deps chromium",
    "test:all": "pnpm run test && pnpm run test:js && pnpm run test:playwright",
    "typecheck": "tsc",
    "specs": "vitest run --config vitest.specs.config.ts",
    "benchmark": "npm-run-all2 bench:*",
    "benchmark:ci": "npm-run-all2 \"bench:* -- --sample --versions latest\"",
    "benchmark:smol": "node benchmark/smol-benchmark.mjs",
    "fuzz": "npx -y tsx scripts/fuzz-run.ts --seed 0 --to 9999 --mutations 3 --progress 100",
    "seed-toml": "npx -y tsx scripts/generate-seed-toml.ts",
    "fuzz2": "npx -y tsx scripts/fuzz-run2.ts --seed 0 --to 9999 --mutations 3",
    "fuzz3": "npx -y tsx scripts/fuzz-run3.ts --seed 0 --to 9999 --mutations 3",
    "bench:parse": "node benchmark/parse-benchmark.mjs",
    "bench:stringify": "node benchmark/stringify-benchmark.mjs",
    "profile": "node benchmark/profile.mjs",
    "build": "rimraf dist && tsdown",
    "build:demo": "node scripts/build-demo.mjs",
    "build:dev": "node scripts/prepare-dev-package.mjs",
    "test:dev": "pnpm run build:dev && node scripts/test-dev-package.mjs",
    "lint": "oxlint",
    "lint:fix": "oxlint --fix",
    "check-overrides": "node scripts/check-overrides.mjs",
    "compare-branch-size": "node scripts/compare-branch-size.mjs",
    "publish:jsr": "jsr publish --allow-dirty"
  }
}