{
  "name": "@attrx/role-morphic",
  "version": "0.2.1",
  "description": "Polymorphic value conversion engine - transform values between multiple representations while preserving semantic identity",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./validate": {
      "types": "./dist/validate.d.ts",
      "import": "./dist/validate.mjs",
      "require": "./dist/validate.js"
    },
    "./convert": {
      "types": "./dist/convert.d.ts",
      "import": "./dist/convert.mjs",
      "require": "./dist/convert.js"
    },
    "./cast": {
      "types": "./dist/cast.d.ts",
      "import": "./dist/cast.mjs",
      "require": "./dist/cast.js"
    },
    "./format": {
      "types": "./dist/format.d.ts",
      "import": "./dist/format.mjs",
      "require": "./dist/format.js"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "keywords": [
    "role",
    "morphic",
    "conversion",
    "transform",
    "variant",
    "codec",
    "units",
    "color",
    "date",
    "area",
    "length",
    "temperature",
    "attrx"
  ],
  "author": {
    "name": "Anderson D. Rosa",
    "email": "andersondrosa@example.com",
    "url": "https://github.com/andersondrosa"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/andersondrosa/attrx-monorepo.git",
    "directory": "packages/role-morphic"
  },
  "bugs": {
    "url": "https://github.com/andersondrosa/attrx-monorepo/issues"
  },
  "homepage": "https://github.com/andersondrosa/attrx-monorepo/tree/main/packages/role-morphic#readme",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^22.10.1",
    "@vitest/coverage-v8": "^2.1.8",
    "prettier": "^3.5.3",
    "tsup": "^8.3.5",
    "typescript": "^5.7.2",
    "vitest": "^2.1.8"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "typecheck": "tsc --noEmit",
    "test": "vitest --run",
    "test:watch": "vitest",
    "test:coverage": "vitest --run --coverage",
    "format": "prettier --write src"
  }
}