{
  "name": "tsover-runtime",
  "version": "0.0.7",
  "description": "Minimal runtime library for overloading operators in tsover",
  "keywords": [
    "operator-overloading",
    "typescript"
  ],
  "homepage": "https://tsover.swmansion.com",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/software-mansion/tsover.git",
    "directory": "packages/tsover-runtime"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./disable": {
      "types": "./dist/disable.d.ts"
    },
    "./package.json": {
      "import": "./package.json"
    }
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "tinybench": "^6.0.0",
    "tsdown": "^0.21.0",
    "typescript": "^5.0.0",
    "tsover-runtime": "0.0.7"
  },
  "scripts": {
    "bench-fn-overhead:bun": "pnpm run build && bun scripts/bench-fn-overhead.ts",
    "bench-fn-overhead:node": "pnpm run build && node scripts/bench-fn-overhead.ts",
    "build": "tsdown"
  }
}