{
  "name": "lossless-json",
  "version": "4.2.0",
  "description": "Parse JSON without risk of losing numeric information",
  "main": "lib/umd/lossless-json.js",
  "module": "lib/esm/index.js",
  "browser": "lib/umd/lossless-json.js",
  "types": "lib/types/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "import": "./lib/esm/index.js",
      "require": "./lib/umd/lossless-json.js",
      "types": "./lib/types/index.d.ts"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/josdejong/lossless-json.git"
  },
  "scripts": {
    "test": "vitest watch src",
    "test-ci": "vitest run src",
    "lint": "biome check",
    "format": "biome check --write",
    "build": "npm-run-all build:**",
    "build:clean": "del-cli lib",
    "build:esm": "babel src --out-dir lib/esm --extensions \".ts\" --source-maps --config-file ./babel.config.json",
    "build:esm:cpy": "cpy tools/esm/package.json lib/esm --flat",
    "build:umd": "rollup --config rollup.config.mjs",
    "build:umd:cpy": "cpy tools/cjs/package.json lib/umd --flat",
    "build:types": "tsc --project tsconfig-types.json",
    "build:validate": "vitest run test-lib",
    "build-and-test": "npm run test-ci && npm run lint && npm run build",
    "release": "npm-run-all release:**",
    "release:build-and-test": "npm run build-and-test",
    "release:version": "standard-version",
    "release:push": "git push && git push --tag",
    "release:publish": "npm publish",
    "release-dry-run": "npm run build-and-test && standard-version --dry-run",
    "benchmark": "npm run build:esm && node tools/benchmark/run.mjs",
    "prepare": "husky"
  },
  "keywords": [
    "json",
    "lossless",
    "parse",
    "stringify",
    "long",
    "bigint",
    "bignumber",
    "number",
    "date",
    "safe"
  ],
  "author": "Jos de Jong",
  "license": "MIT",
  "devDependencies": {
    "@babel/cli": "7.28.3",
    "@babel/core": "7.28.3",
    "@babel/plugin-transform-typescript": "7.28.0",
    "@babel/preset-env": "7.28.3",
    "@babel/preset-typescript": "7.27.1",
    "@biomejs/biome": "2.2.2",
    "@commitlint/cli": "19.8.1",
    "@commitlint/config-conventional": "19.8.1",
    "@rollup/plugin-terser": "0.4.4",
    "@types/benchmark": "2.1.5",
    "@types/node": "24.3.0",
    "cpy-cli": "6.0.0",
    "decimal.js": "10.6.0",
    "del-cli": "6.0.0",
    "globals": "16.3.0",
    "husky": "9.1.7",
    "npm-run-all": "4.1.5",
    "rollup": "4.49.0",
    "standard-version": "9.5.0",
    "tinybench": "5.0.1",
    "typescript": "5.9.2",
    "vitest": "3.2.4"
  },
  "files": [
    "dist",
    "lib",
    "HISTORY.md",
    "LICENSE.md",
    "README.md"
  ]
}
