{
  "name": "@holochain/client",
  "version": "0.18.1",
  "description": "A JavaScript client for the Holochain Conductor API",
  "author": "Holochain Foundation <info@holochain.org> (https://holochain.org)",
  "license": "CAL-1.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/holochain/holochain-client-js.git"
  },
  "keywords": [
    "holochain",
    "client",
    "conductor api"
  ],
  "bugs": {
    "url": "https://github.com/holochain/holochain-client-js/issues"
  },
  "homepage": "https://github.com/holochain/holochain-client-js#readme",
  "engines": {
    "node": ">=18.0.0 || >=20.0.0"
  },
  "main": "lib/index.js",
  "module": "lib/index.js",
  "type": "module",
  "exports": {
    ".": "./lib/index.js"
  },
  "types": "lib/index.d.ts",
  "files": [
    "lib"
  ],
  "scripts": {
    "lint": "eslint --fix --ext .ts src test .eslintrc.cjs",
    "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
    "test:app-agent": "RUST_LOG=error RUST_BACKTRACE=1 tsx test/e2e/app-websocket.ts",
    "test:utils": "RUST_LOG=error RUST_BACKTRACE=1 tsx test/e2e/utils.ts",
    "test": "RUST_LOG=error RUST_BACKTRACE=1 tsx test/index.ts",
    "build:lib": "rimraf ./lib && tsc -p tsconfig.build.json",
    "build:docs": "api-extractor run --local && api-documenter markdown -i docs/temp -o docs",
    "build": "npm run build:lib && npm run build:docs",
    "prepublishOnly": "npm run lint && npm run build"
  },
  "dependencies": {
    "@bitgo/blake2b": "^3.2.4",
    "@holochain/serialization": "^0.1.0-beta-rc.3",
    "@msgpack/msgpack": "^2.8.0",
    "emittery": "^1.0.1",
    "isomorphic-ws": "^5.0.0",
    "js-base64": "^3.7.5",
    "libsodium-wrappers": "^0.7.13",
    "lodash-es": "^4.17.21",
    "ws": "^8.14.2"
  },
  "devDependencies": {
    "@microsoft/api-documenter": "^7.21.7",
    "@microsoft/api-extractor": "^7.34.4",
    "@types/js-yaml": "4.0.9",
    "@types/libsodium-wrappers": "^0.7.11",
    "@types/lodash-es": "^4.17.6",
    "@types/tape": "^4.13.2",
    "@types/ws": "^8.5.5",
    "@typescript-eslint/eslint-plugin": "^5.62.0",
    "@typescript-eslint/parser": "^5.62.0",
    "eslint": "^8.49.0",
    "eslint-config-prettier": "^8.10.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-tsdoc": "^0.2.17",
    "js-yaml": "^4.1.0",
    "prettier": "^2.8.8",
    "rimraf": "^3.0.2",
    "tape": "^5.6.6",
    "tsx": "^4.7.2",
    "typescript": "^4.9.5"
  }
}