{
  "name": "tiny-types",
  "version": "2.0.5",
  "description": "A tiny library that brings Tiny Types to JavaScript and TypeScript",
  "type": "module",
  "main": "lib/index.js",
  "module": "./esm/index.js",
  "typings": "lib/index.d.ts",
  "typesVersions": {
    "*": {
      "objects": [
        "lib/objects/index.d.ts"
      ]
    }
  },
  "exports": {
    ".": [
      {
        "types": "./lib/index.d.ts",
        "import": "./esm/index.js",
        "require": "./lib/index.js"
      },
      "./lib/index.js"
    ],
    "./objects": [
      {
        "types": "./lib/objects/index.d.ts",
        "import": "./esm/objects/index.js",
        "require": "./lib/objects/index.js"
      },
      "./lib/objects/index.js"
    ],
    "./lib/*": "./lib/*",
    "./esm/*": "./esm/*",
    "./package.json": "./package.json"
  },
  "scripts": {
    "clean": "rimraf docs lib esm reports",
    "lint": "eslint --ext ts --config .eslintrc.yml .",
    "lint:fix": "npm run lint -- --fix",
    "test": "node --import tsx node_modules/vitest/vitest.mjs run",
    "test:coverage": "node --import tsx node_modules/vitest/vitest.mjs run --coverage",
    "compile": "npm run compile:clean && npm run compile:esm && npm run compile:cjs && npm run compile:cjs-package",
    "compile:clean": "rimraf lib esm",
    "compile:esm": "tsc --project tsconfig-esm.build.json",
    "compile:cjs": "tsc --project tsconfig-cjs.build.json",
    "compile:cjs-package": "node -e \"require('fs').writeFileSync('lib/package.json', '{ \\\"type\\\": \\\"commonjs\\\" }')\"",
    "verify": "npm run clean && npm run lint && npm run test && npm run compile",
    "doc": "esdoc",
    "commit": "git-cz",
    "semantic-release": "semantic-release"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jan-molak/tiny-types.git"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "keywords": [
    "design",
    "patterns",
    "value",
    "objects",
    "tiny",
    "types",
    "ddd",
    "domain-driven",
    "design"
  ],
  "author": "Jan Molak <jan.molak@smartcodeltd.co.uk>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/jan-molak/tiny-types/issues"
  },
  "homepage": "https://jan-molak.github.io/tiny-types/",
  "engines": {
    "node": "^20 || ^22 || ^24"
  },
  "devDependencies": {
    "@types/node": "20.19.37",
    "@typescript-eslint/eslint-plugin": "7.18.0",
    "@typescript-eslint/parser": "7.18.0",
    "@vitest/coverage-v8": "4.1.0",
    "cheerio": "1.2.0",
    "commitizen": "4.3.1",
    "cz-conventional-changelog": "3.3.0",
    "esdoc": "1.1.0",
    "esdoc-importpath-plugin": "1.0.2",
    "esdoc-inject-style-plugin": "1.0.0",
    "esdoc-standard-plugin": "1.0.0",
    "esdoc-typescript-plugin": "1.0.1",
    "eslint": "8.57.1",
    "eslint-plugin-import": "2.32.0",
    "eslint-plugin-simple-import-sort": "12.1.1",
    "eslint-plugin-unicorn": "56.0.1",
    "eslint-plugin-unused-imports": "4.4.1",
    "rimraf": "6.1.3",
    "semantic-release": "25.0.3",
    "tsx": "^4.19.2",
    "typescript": "5.9.3",
    "vitest": "4.1.0"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}
