{
  "name": "kysely-bun-worker",
  "version": "1.2.1",
  "description": "kysely dialect for bun:sqlite, running in worker",
  "author": {
    "name": "subframe7536",
    "email": "1667077010@qq.com"
  },
  "license": "MIT",
  "homepage": "https://github.com/subframe7536/kysely-sqlite-tools/tree/master/packages/dialect-bun-worker",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/subframe7536/kysely-sqlite-tools.git#master"
  },
  "bugs": "https://github.com/subframe7536/kysely-sqlite-tools/issues",
  "keywords": [
    "kysely",
    "dialect",
    "sql",
    "worker",
    "sqlite3",
    "bun"
  ],
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./normal": {
      "import": "./dist/normal.mjs",
      "require": "./dist/normal.js"
    },
    "./worker": {
      "import": "./dist/worker.mjs",
      "require": "./dist/worker.js"
    },
    "./package.json": "./package.json"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "typesVersions": {
    "*": {
      "normal": [
        "./dist/normal.d.ts"
      ],
      "worker": [
        "./dist/index.d.ts"
      ]
    }
  },
  "files": [
    "dist"
  ],
  "peerDependencies": {
    "bun-types": ">=1.1.14",
    "kysely": ">=0.26"
  },
  "dependencies": {
    "kysely-generic-sqlite": "1.2.1"
  },
  "devDependencies": {
    "kysely": "^0.28.2"
  },
  "scripts": {
    "dev": "tsup --watch",
    "test": "bun test",
    "test:dev": "tsup && bun test",
    "build": "tsup"
  }
}