{
  "name": "@pitzzahh/signaldb-adapter-tauri",
  "version": "2.3.0",
  "description": "A SignalDB persistence adapter for Tauri apps with optional encryption support",
  "module": "dist/index.js",
  "type": "module",
  "scripts": {
    "build": "bun build src/index.ts --outdir dist --target node --minify --external @signaldb/core --external @tauri-apps/plugin-fs --external @tauri-apps/api && tsc --declaration --emitDeclarationOnly --outDir dist",
    "test": "bun test test/",
    "test:watch": "bun test --watch",
    "test:coverage": "bun test --coverage",
    "bench": "bun test scripts/bench.test.ts",
    "prepublishOnly": "bun run build && bun test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/pitzzahh/signaldb-adapter-tauri.git"
  },
  "homepage": "https://github.com/pitzzahh/signaldb-adapter-tauri#readme",
  "bugs": {
    "url": "https://github.com/pitzzahh/signaldb-adapter-tauri/issues"
  },
  "keywords": [
    "signaldb",
    "tauri",
    "file-system",
    "storage",
    "database",
    "persistence",
    "adapter",
    "encryption"
  ],
  "author": "Peter John Arao <araopeterj@gmail.com>",
  "license": "MIT",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ],
  "peerDependencies": {
    "@signaldb/core": "1.x",
    "@tauri-apps/api": "2.x",
    "@tauri-apps/plugin-fs": "2.x"
  },
  "devDependencies": {
    "@tauri-apps/plugin-fs": "^2.5.1",
    "@signaldb/core": "^1.8.1",
    "typescript": "^7.0.2"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
