{
  "name": "jsonous",
  "version": "12.1.0",
  "description": "Type safe JSON decoding for JavaScript",
  "author": "Ryan L. Bell <ryan.l.bell@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/kofno/jsonous.git"
  },
  "scripts": {
    "docs": "bun typedoc --out docs --theme minimal && touch docs/.nojekyll",
    "build": "tsup",
    "dev": "tsup --watch"
  },
  "devDependencies": {
    "typedoc": "^0.28.0",
    "tsup": "^8.4.0",
    "@types/bun": "^1.2.5",
    "typescript": "^5.8.2"
  },
  "dependencies": {
    "maybeasy": "^7.1.0",
    "resulty": "^8.0.0",
    "date-fns": "^4.1.0"
  },
  "prettier": {
    "trailingComma": "es5",
    "singleQuote": true,
    "printWidth": 100
  },
  "type": "module",
  "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"
    }
  },
  "files": [
    "dist/**/*",
    "package.json",
    "README.md",
    "LICENSE"
  ]
}
