{
  "name": "superjson-temporal",
  "description": "SuperJSON serializers/deserializers for Temporal types.",
  "author": "Ian Macalinao <me@ianm.com>",
  "version": "0.3.1",
  "license": "Apache-2.0",
  "type": "module",
  "sideEffects": false,
  "files": [
    "dist/",
    "src/",
    "README.md"
  ],
  "repository": "github:macalinao/temporal-utils",
  "homepage": "https://github.com/macalinao/temporal-utils",
  "bugs": {
    "url": "https://github.com/macalinao/temporal-utils/issues"
  },
  "keywords": [
    "temporal",
    "superjson"
  ],
  "dependencies": {
    "tslib": "^2.8.1"
  },
  "peerDependencies": {
    "superjson": "^2.2.2",
    "temporal-polyfill": "^0.2 || ^0.3"
  },
  "devDependencies": {
    "@macalinao/eslint-config": "^4.1.8",
    "@macalinao/tsconfig": "^3.1.0",
    "eslint": "^9.23.0",
    "superjson": "^2.2.2",
    "temporal-polyfill": "^0.3.0",
    "typescript": "^5.8.2",
    "vitest": "^3.0.9"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": "eslint --fix",
    "*.{md,json}": "prettier --write"
  },
  "scripts": {
    "build": "tsc",
    "clean": "tsc --build --clean && rm -fr dist/",
    "lint": "eslint .",
    "test": "vitest"
  }
}