{
  "name": "@canton-network/core-tx-parser",
  "version": "1.10.1",
  "type": "module",
  "description": "Transaction parsing utilities for Canton Network transactions, including parsing of transaction trees and extraction of relevant information from transaction events.",
  "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"
    }
  },
  "devDependencies": {
    "@types/node": "^25.9.4",
    "@vitest/browser-playwright": "^4.1.10",
    "@vitest/coverage-v8": "^4.1.10",
    "openapi-typescript": "^7.13.0",
    "playwright": "^1.61.1",
    "tsdown": "^0.22.9",
    "typescript": "^5.9.3",
    "vitest": "^4.1.10"
  },
  "dependencies": {
    "bignumber.js": "^10.0.2",
    "dayjs": "^1.11.21",
    "openapi-fetch": "^0.17.0",
    "pino": "^10.3.1",
    "@canton-network/core-ledger-client-types": "^1.10.1",
    "@canton-network/core-ledger-proto": "^1.9.1",
    "@canton-network/core-provider-ledger": "^1.10.1",
    "@canton-network/core-splice-client": "^1.10.1",
    "@canton-network/core-types": "^1.10.1",
    "@canton-network/core-token-standard": "^1.10.1",
    "@canton-network/core-wallet-auth": "^1.10.1"
  },
  "files": [
    "dist/**"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/canton-network/wallet.git",
    "directory": "core/tx-parser"
  },
  "homepage": "https://github.com/canton-network/wallet/tree/main/core/tx-parser#readme",
  "bugs": {
    "url": "https://github.com/canton-network/wallet/issues"
  },
  "scripts": {
    "build": "tsdown --onSuccess \"tsc\"",
    "dev": "tsdown --watch --onSuccess \"tsc\"",
    "flatpack": "pnpm pack --pack-destination \"$FLATPACK_OUTDIR\"",
    "clean": "tsc -b --clean; rm -rf dist",
    "test": "vitest run --project node --project browser --passWithNoTests",
    "test:coverage": "vitest run --project node --project browser --coverage --passWithNoTests"
  }
}