{
  "name": "@indutny/sqlcipher",
  "version": "1.0.0-alpha.2",
  "description": "A fast sqlcipher wrapper",
  "homepage": "http://github.com/signalapp/node-sqlcipher.git",
  "license": "AGPL-3.0-only",
  "author": {
    "name": "Signal Messenger, LLC",
    "email": "support@signal.org"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/signalapp/node-sqlcipher.git"
  },
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/lib/index.d.ts",
  "files": [
    "dist/index.cjs",
    "dist/index.mjs",
    "dist/lib/index.d.ts",
    "src/*.cc",
    "src/*.h",
    "deps/**",
    "!deps/sqlcipher/update.sh",
    "!deps/.tmp/**",
    "!deps/extension/target/**",
    "prebuilds",
    "!prebuilds/**/*.sym",
    "README.md",
    "binding.gyp"
  ],
  "dependencies": {
    "node-addon-api": "*",
    "node-gyp-build": "^4.8.4"
  },
  "keywords": [
    "sqlite",
    "sqlcipher"
  ],
  "devDependencies": {
    "@eslint/js": "^9.21.0",
    "@types/node": "^22.13.9",
    "@vitest/coverage-v8": "^3.0.8",
    "esbuild": "^0.25.0",
    "eslint": "^9.21.0",
    "eslint-config-prettier": "^10.0.2",
    "node-gyp": "^11.1.0",
    "npm-run-all": "^4.1.5",
    "prebuildify": "^6.0.1",
    "prettier": "^3.5.3",
    "typedoc": "^0.27.9",
    "typescript": "^5.8.2",
    "typescript-eslint": "^8.26.0",
    "vitest": "^3.0.8"
  },
  "scripts": {
    "watch": "tsc --watch",
    "build": "run-p --print-label build:esm build:cjs",
    "build:esm": "esbuild --target=node20 --define:__dirname=undefined lib/index.ts --outfile=dist/index.mjs",
    "build:cjs": "esbuild --target=node20 --define:import.meta.url=undefined lib/index.ts --format=cjs --outfile=dist/index.cjs",
    "build:docs": "typedoc src/index.ts --includeVersion",
    "install": "node-gyp-build",
    "prebuildify": "prebuildify --strip --napi",
    "test": "vitest --coverage",
    "format": "run-p --print-label format:c format:js",
    "format:c": "xcrun clang-format --style=chromium -Werror --verbose -i src/*.cc",
    "format:js": "prettier --cache --write .",
    "lint": "run-p --print-label check:eslint check:format",
    "check:eslint": "eslint --cache .",
    "check:format": "prettier --cache --check ."
  }
}