{
  "name": "@rimbu/common",
  "version": "2.0.7",
  "description": "Common types and objects used in many other Rimbu packages",
  "keywords": [
    "common",
    "range",
    "reducer",
    "immutable",
    "rimbu",
    "typescript"
  ],
  "homepage": "https://rimbu.org",
  "author": {
    "name": "Arvid Nicolaas",
    "email": "arvid@rimbu.org",
    "url": "https://github.com/vitoke"
  },
  "license": "MIT",
  "funding": [
    {
      "type": "individual",
      "url": "https://github.com/sponsors/vitoke"
    }
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rimbu-org/rimbu.git",
    "directory": "packages/common"
  },
  "type": "module",
  "main": "./dist/cjs/index.cjs",
  "module": "./dist/esm/index.mjs",
  "types": "./dist/cjs/index.d.cts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.mts",
        "default": "./dist/esm/index.mjs"
      },
      "require": {
        "types": "./dist/cjs/index.d.cts",
        "default": "./dist/cjs/index.cjs"
      }
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "b": "duel",
    "build": "yarn clean && yarn bundle",
    "bundle": "yarn bundle:cjs && yarn bundle:esm",
    "bundle:cjs": "yarn bundle:cjs-prepare && yarn bundle:cjs-build && yarn bundle:cjs-clean",
    "bundle:cjs-prepare": "node ../../config/bunnify.mjs -mode cjs",
    "bundle:cjs-build": "tsc -p tsconfig.cjs.json",
    "bundle:cjs-clean": "rimraf _cjs_prepare",
    "bundle:esm": "tsc --p tsconfig.esm.json",
    "clean": "rimraf dist",
    "extract-api": "tsx ../../config/api-extractor.ts config/api-extractor.main.json",
    "format": "yarn format:base --write",
    "format:base": "prettier \"{!CHANGELOG.md}|**/**/*.{ts,tsx,js,mts,mjs,json,md}\"",
    "format:check": "yarn format:base --check",
    "lint": "eslint src",
    "test": "vitest run",
    "test:cov": "vitest run --coverage",
    "test:watch": "vitest",
    "test:types": "tsd --files test-d",
    "typecheck": "tsc"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "dependencies": {
    "tslib": "^2.8.1"
  },
  "gitHead": "deba9bad7177bd4a47378465ae645b9bcc0cf938"
}
