{
  "name": "@micthiesen/mitools",
  "version": "4.1.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/micthiesen/mitools"
  },
  "type": "module",
  "exports": {
    "./errors": "./dist/errors/index.js",
    "./collections": "./dist/collections/index.js",
    "./config": "./dist/config/index.js",
    "./cli": "./dist/cli/index.js",
    "./sqlite": "./dist/persistence/sqlite.js",
    "./docstore": "./dist/persistence/docstore.js",
    "./entities": "./dist/persistence/entities.js",
    "./table": "./dist/persistence/table.js",
    "./logging": "./dist/logging/index.js",
    "./logfile": "./dist/services/logfile.js",
    "./pushover": "./dist/services/pushover.js",
    "./async": "./dist/async/index.js",
    "./proc": "./dist/proc/index.js",
    "./locks": "./dist/locks/index.js",
    "./probes": "./dist/probes/index.js",
    "./strings": "./dist/utils/strings.js",
    "./types": "./dist/types/index.js",
    "./http": "./dist/http/index.js",
    "./karakeep": "./dist/karakeep/index.js",
    "./scheduling": "./dist/scheduling/index.js",
    "./streams": "./dist/streams/index.js",
    "./boundary": "./dist/boundary/index.js",
    "./react": "./dist/react/index.js",
    "./testing": "./dist/testing/index.js",
    "./text": "./dist/text/index.js",
    "./xml": "./dist/xml/index.js",
    "./markdown": "./dist/markdown/index.js",
    "./vitest": "./dist/vitest/config.js",
    "./biome.shared.json": "./biome.shared.json",
    "./tsconfig/*.json": "./tsconfig/*.json"
  },
  "dependencies": {
    "better-sqlite3": "^12.11.1",
    "cbor": "^10.0.12",
    "smol-toml": "^1.8.0"
  },
  "devDependencies": {
    "@biomejs/biome": "2.5.4",
    "@effect/tsgo": "0.39.1",
    "@effect/vitest": "4.0.0-rc.112",
    "@types/better-sqlite3": "^7.6.13",
    "@types/node": "^24.13.3",
    "@types/react": "^19.2.18",
    "effect": "4.0.0-rc.112",
    "react": "^19.2.8",
    "tsx": "^4.23.1",
    "typescript": "7.0.2",
    "vite": "^8.1.4",
    "vitest": "^4.1.10"
  },
  "engines": {
    "node": ">=20",
    "pnpm": ">=11"
  },
  "files": [
    "dist",
    "tsconfig",
    "biome.shared.json",
    "MIGRATION.md",
    "CHANGELOG.md"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "peerDependencies": {
    "effect": ">=4.0.0-rc.112 <4.1",
    "react": ">=18",
    "vite": ">=8",
    "vitest": ">=4.1.0 <5"
  },
  "peerDependenciesMeta": {
    "vite": {
      "optional": true
    },
    "vitest": {
      "optional": true
    },
    "react": {
      "optional": true
    }
  },
  "scripts": {
    "build": "rm -fr ./dist && tsc -p tsconfig.build.json",
    "typecheck": "tsc --noEmit",
    "lint": "effect-tsgo diagnostics --project tsconfig.json --strict",
    "format": "biome format .",
    "check": "biome check .",
    "test": "vitest"
  }
}