{
  "name": "castage",
  "version": "2.0.1",
  "description": "A type-safe library for dynamic object casting and ensuring type consistency in JavaScript/TypeScript.",
  "scripts": {
    "test": "jest",
    "clear": "rm -rf ./lib; rm -rf ./dist; rm -rf ./esm",
    "compile:cjs": "tsc --project tsconfig.cjs.json",
    "compile:esm": "tsc --project tsconfig.esm.json && echo '{ \"type\": \"module\" }' > esm/package.json",
    "compile": "npm run clear; npm run compile:cjs && npm run compile:esm && tsup",
    "lint": "eslint ."
  },
  "keywords": [
    "type-safety",
    "dynamic-casting",
    "type-consistency",
    "typescript",
    "runtime-types",
    "type-validation"
  ],
  "author": "Dmytro Shchehlov <dmitry.scheglov@gmail.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DScheglov/castage"
  },
  "bugs": {
    "url": "https://github.com/DScheglov/castage/issues"
  },
  "license": "MIT",
  "devDependencies": {
    "@eslint/js": "^9.7.0",
    "@type-challenges/utils": "^0.1.1",
    "@types/eslint": "^9.6.0",
    "@types/node": "^20.10.5",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.2.1",
    "jest": "^29.7.0",
    "terser": "^5.33.0",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.2",
    "tsup": "^8.3.0",
    "typescript": "^5.6.2",
    "typescript-eslint": "^7.17.0"
  },
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./esm/index.js",
      "require": "./lib/index.js"
    }
  },
  "typesVersions": {
    "*": {
      "*": [
        "./lib/*"
      ]
    }
  },
  "files": [
    "lib",
    "esm",
    "dist"
  ],
  "optionalDependencies": {
    "resultage": "^0.7.0 || ^0.8.0"
  }
}
