{
  "name": "structured-clone-es",
  "type": "module",
  "version": "2.0.0",
  "description": "An env-agnostic serializer and deserializer with recursion ability and types beyond JSON, based on the HTML structured clone algorithm.",
  "author": "Andrea Giammarchi",
  "license": "ISC",
  "homepage": "https://github.com/antfu-collective/structured-clone-es#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antfu-collective/structured-clone-es.git"
  },
  "bugs": "https://github.com/antfu-collective/structured-clone-es/issues",
  "keywords": [
    "structured-clone",
    "serialize",
    "deserialize"
  ],
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.mjs",
    "./package.json": "./package.json"
  },
  "types": "./dist/index.d.mts",
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@antfu/eslint-config": "^7.7.2",
    "@antfu/ni": "^28.3.0",
    "@antfu/utils": "^9.3.0",
    "@types/node": "^25.4.0",
    "@vitest/coverage-v8": "3.2.4",
    "bumpp": "^10.4.1",
    "eslint": "^10.0.3",
    "lint-staged": "^16.3.3",
    "pnpm": "^10.32.1",
    "simple-git-hooks": "^2.13.1",
    "tsdown": "^0.21.2",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18"
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm lint-staged"
  },
  "lint-staged": {
    "*": "eslint --fix"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "test": "vitest",
    "lint": "eslint .",
    "release": "bumpp",
    "start": "tsx src/index.ts",
    "typecheck": "tsc --noEmit"
  }
}