{
  "name": "zkdb",
  "version": "3.0.0",
  "description": "zkDatabase for the future of Web3",
  "author": "chiro@orochi.network",
  "license": "Apache-2.0",
  "keywords": [
    "zk",
    "database",
    "zk-database",
    "zkdb",
    "zkdatabase"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/orochi-network/zkDatabase.git"
  },
  "bugs": {
    "url": "https://github.com/orochi-network/zkDatabase/issues"
  },
  "homepage": "https://github.com/orochi-network/zkDatabase#readme",
  "type": "module",
  "module": "./build/src/index.js",
  "main": "./build/src/index.js",
  "types": "./build/types/src/index.d.ts",
  "scripts": {
    "release": "rm -rf ./build && yarn build && yarn npm publish --access public",
    "build": "rollup -c",
    "buildw": "tsc -p tsconfig.json --watch",
    "coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
    "format": "prettier --write --ignore-unknown **/*",
    "test": "echo 'hello world'",
    "testw": "node ../../node_modules/jest/bin/jest.js --watch",
    "lint": "echo 'hello world'",
    "lint-check": "eslint ./src/**/*.ts --debug"
  },
  "typesVersions": {
    "*": {
      "*": [
        "*",
        "build/types/src/*"
      ]
    }
  },
  "files": [
    "build",
    "!**/*.tsbuildinfo",
    "!**/*.test.js",
    "!**/*.test.js.map",
    "!**/*.test.d.ts",
    "!**/*.test.d.ts.map"
  ],
  "lint-staged": {
    "**/*": [
      "eslint ./src/**/*.ts --fix",
      "prettier --write --ignore-unknown"
    ]
  },
  "exports": {
    ".": {
      "types": "./build/types/src/index.d.ts",
      "import": "./build/index.js",
      "default": "./build/index.js"
    }
  },
  "sideEffects": false,
  "dependencies": {
    "@apollo/client": "3.13.9",
    "@zkdb/api": "3.0.0",
    "@zkdb/common": "2.0.0",
    "@zkdb/permission": "1.0.0",
    "@zkdb/wasm": "1.0.0",
    "snarkjs": "0.7.5"
  },
  "devDependencies": {
    "@rollup/plugin-alias": "5.1.1",
    "@rollup/plugin-node-resolve": "16.0.1",
    "@rollup/plugin-typescript": "12.1.4",
    "@types/snarkjs": "0.7.9",
    "graphql": "16.11.0",
    "rollup": "4.46.2",
    "typescript": "5.9.2"
  }
}