{
  "name": "mvcc-api",
  "version": "1.3.7",
  "description": "Multiversion Concurrency Control (MVCC) API for TypeScript",
  "license": "MIT",
  "author": "izure <admin@izure.org>",
  "main": "./dist/cjs/index.cjs",
  "module": "./dist/esm/index.mjs",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "require": "./dist/cjs/index.cjs",
      "import": "./dist/esm/index.mjs"
    }
  },
  "files": [
    "./dist/**/*"
  ],
  "scripts": {
    "test": "jest",
    "build": "node build/index.js && tsc"
  },
  "keywords": [
    "mvcc",
    "concurrency",
    "database",
    "transaction"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/izure1/mvcc-api.git"
  },
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "esbuild": "^0.27.2",
    "jest": "^30.2.0",
    "ts-jest": "^29.4.6",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "ryoiki": "^1.2.0"
  }
}