{
  "name": "crypto-incognito",
  "version": "0.0.2",
  "description": "Crypto Incognito client-side library.",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "prepack": "npm run clean && npm run build",
    "preinstall": "npm run vendor:autogen && npm run cpp:build",
    "install": "node-gyp rebuild",
    "build": "tsc",
    "clean": "npm run cpp:clean",
    "vendor:autogen": "cd vendor/libsodium && ./autogen.sh",
    "cpp:build": "cmake . -DCMAKE_BUILD_TYPE=Release && make",
    "cpp:clean": "make clean",
    "gyp:rebuild": "node-gyp rebuild",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "files": [
    "vendor/*",
    "src/*",
    "dist/*",
    "CMakeLists.txt",
    "binding.gyp"
  ],
  "keywords": [
    "cryptography",
    "PIR",
    "private information retrieval",
    "ElGamal",
    "EC-ElGamal",
    "elliptic curve",
    "Crypto Incognito"
  ],
  "author": "Masahiko Hyuga <mail@mhyuga.jp>",
  "homepage": "https://crypto-incognito.com/",
  "repository": {
    "type": "git",
    "url": "https://github.com/crypto-incognito/ci-lib.git"
  },
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^14.14.37",
    "node-gyp": "^8.0.0"
  },
  "dependencies": {
    "node-addon-api": "^3.1.0"
  }
}
