{
  "name": "xitdb",
  "version": "0.13.0",
  "description": "An immutable database",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/xit-vcs/xitdb-ts.git"
  },
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "bun build ./src/index.ts --outdir ./dist --target bun",
    "build:types": "tsc --emitDeclarationOnly",
    "prepublishOnly": "bun run build && bun run build:types",
    "test": "bun test",
    "typecheck": "tsc --noEmit"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "typescript": "^5.3.0"
  }
}
