{
  "name": "@canton-network/core-acs-reader",
  "version": "1.16.0",
  "type": "module",
  "description": "Reader for active contract set (ACS) data from the Canton ledger, providing functions to retrieve and process active contract information for specified filters.",
  "license": "Apache-2.0",
  "author": "Phillip Olesen <phillip.olesen@digitalasset.com>",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "default": "./dist/index.js"
    }
  },
  "scripts": {
    "build": "tsup --onSuccess \"tsc\"",
    "dev": "tsup --watch --onSuccess \"tsc\"",
    "clean": "tsc -b --clean; rm -rf dist",
    "flatpack": "yarn pack --out \"$FLATPACK_OUTDIR\"",
    "test": "vitest run --project node --project browser",
    "test:coverage": "vitest run --project node --project browser --coverage"
  },
  "devDependencies": {
    "@types/node": "^25.9.3",
    "@vitest/browser-playwright": "^4.1.8",
    "@vitest/coverage-v8": "^4.1.8",
    "openapi-typescript": "^7.13.0",
    "playwright": "^1.60.0",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "vitest": "^4.1.8"
  },
  "dependencies": {
    "@canton-network/core-ledger-client-types": "^1.8.0",
    "@canton-network/core-provider-ledger": "^1.8.0",
    "@canton-network/core-types": "^1.8.0",
    "bignumber.js": "^9.3.1",
    "dayjs": "^1.11.21",
    "openapi-fetch": "^0.15.2",
    "pino": "^10.3.1",
    "typescript-lru-cache": "^2.0.0"
  },
  "files": [
    "dist/**"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/canton-network/wallet.git",
    "directory": "core/acs-reader"
  },
  "homepage": "https://github.com/canton-network/wallet/tree/main/core/acs-reader#readme",
  "bugs": {
    "url": "https://github.com/canton-network/wallet/issues"
  }
}