{
  "name": "@pitzzahh/signaldb-adapter-tauri",
  "version": "3.0.0",
  "description": "A SignalDB persistence adapter for Tauri apps with optional encryption support",
  "module": "dist/index.js",
  "type": "module",
  "sideEffects": false,
  "scripts": {
    "build": "bun build src/index.ts src/encryption.ts --outdir dist --target browser --minify --external @signaldb/core --external @tauri-apps/plugin-fs --external @tauri-apps/api && tsc --declaration --emitDeclarationOnly --outDir dist",
    "typecheck": "tsc --noEmit",
    "size": "bun run build && node -e \"const fs=require('fs');const b=fs.statSync('dist/index.js').size;const g=require('zlib').gzipSync(fs.readFileSync('dist/index.js')).length;console.log('bundle: '+b+' B, gzip: '+g+' B');if(b>15360){console.error('Bundle too large: '+b+' B > 15360 B');process.exit(1)}\"",
    "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 run typecheck && 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"
    },
    "./encryption": {
      "types": "./dist/encryption.d.ts",
      "import": "./dist/encryption.js"
    }
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ],
  "peerDependencies": {
    "@signaldb/core": "1.x",
    "@tauri-apps/api": "2.x",
    "@tauri-apps/plugin-fs": "2.x"
  },
  "devDependencies": {
    "@signaldb/core": "^1.8.1",
    "@tauri-apps/plugin-fs": "^2.5.2",
    "@types/bun": "^1.4.1",
    "typescript": "^7.0.2"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
