{
  "name": "json-freeze",
  "version": "1.0.0",
  "description": "RFC 8785 Canonical JSON for JavaScript.",
  "keywords": [
    "canonical",
    "canonicalize",
    "deterministic",
    "hash",
    "jcs",
    "json",
    "rfc-8785",
    "rfc8785",
    "sign"
  ],
  "homepage": "https://github.com/chicong065/json-freeze#readme",
  "bugs": {
    "url": "https://github.com/chicong065/json-freeze/issues"
  },
  "license": "MIT",
  "author": "Cong Nguyen",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/chicong065/json-freeze.git"
  },
  "bin": {
    "json-freeze": "./bin/json-freeze.js"
  },
  "files": [
    "dist",
    "bin",
    "README.md",
    "LICENSE"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsdown",
    "format": "oxfmt",
    "format:check": "oxfmt --check",
    "lint": "oxlint",
    "prepublishOnly": "pnpm typecheck && pnpm build && pnpm test",
    "release": "pnpm publish",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit"
  },
  "devDependencies": {
    "@types/node": "^25.6.0",
    "oxfmt": "^0.46.0",
    "oxlint": "^1.61.0",
    "oxlint-tsgolint": "^0.21.1",
    "tsdown": "^0.21.9",
    "typescript": "^5.5.0",
    "vitest": "^2.1.0"
  },
  "engines": {
    "node": ">=18"
  }
}
