{
  "name": "@yipe/dice",
  "version": "0.10.0",
  "description": "A high-performance dice probability engine for D&D 5e DPR calculations. Powers dprcalc.com.",
  "keywords": [
    "dnd",
    "dice",
    "probability",
    "ttrpg",
    "dpr",
    "statistics"
  ],
  "homepage": "https://github.com/yipe/dice#readme",
  "bugs": {
    "url": "https://github.com/yipe/dice/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yipe/dice.git"
  },
  "license": "MIT",
  "author": "Michael Margolis <acct@yipe.org>",
  "type": "module",
  "packageManager": "yarn@4.17.1",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./builder": {
      "types": "./dist/builder/index.d.ts",
      "import": "./dist/builder/index.js",
      "require": "./dist/builder/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "builder": [
        "dist/builder/index.d.ts"
      ],
      "": [
        "dist/index.d.ts"
      ]
    }
  },
  "directories": {
    "example": "examples",
    "test": "tests"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": [
    "./dist/builder/ac.js",
    "./dist/builder/dc.js"
  ],
  "scripts": {
    "format": "node -r ./config/eslint-ts6-alias.cjs ./node_modules/eslint/bin/eslint.js . --fix",
    "lint": "node -r ./config/eslint-ts6-alias.cjs ./node_modules/eslint/bin/eslint.js .",
    "typecheck": "tsc -p config/tsconfig.build.json --noEmit",
    "build": "tsup --config config/tsup.config.ts && yarn types",
    "types": "tsc -p config/tsconfig.build.json --emitDeclarationOnly && node config/postbuild-dts.mjs",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "prepare": "yarn build",
    "prepublishOnly": "yarn typecheck && yarn test && yarn build",
    "example": "tsx examples/run.ts"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=18.17"
  },
  "devDependencies": {
    "@types/node": "^26.1.1",
    "@typescript-eslint/eslint-plugin": "^8.64.0",
    "@typescript-eslint/parser": "^8.64.0",
    "@typescript/typescript6": "^6.0.2",
    "@vitest/coverage-v8": "^4.1.10",
    "eslint": "^10.7.0",
    "tsup": "^8.5.1",
    "tsx": "^4.23.1",
    "typescript": "^7.0.2",
    "vitest": "^4.1.10"
  }
}
