{
  "name": "@ocap/util",
  "version": "1.21.3",
  "description": "utils shared across multiple forge js libs, works in both node.js and browser",
  "keywords": [
    "arcblock",
    "browser",
    "sdk"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "base64-url": "^2.3.3",
    "bn.js": "5.2.1",
    "bs58": "^5.0.0",
    "lodash": "^4.17.21",
    "utf8": "^3.0.0"
  },
  "resolutions": {
    "bn.js": "5.2.1",
    "elliptic": "6.5.3"
  },
  "devDependencies": {
    "@arcblock/eslint-config-ts": "0.3.3",
    "@types/base64-url": "^2.2.2",
    "@types/jest": "^29.5.13",
    "@types/lodash": "^4.17.10",
    "@types/node": "^22.7.5",
    "@types/utf8": "^3.0.3",
    "eslint": "^8.57.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.2.5",
    "type-fest": "^3.1.0",
    "typescript": "^5.6.2"
  },
  "author": {
    "name": "wangshijun",
    "email": "shijun@arcblock.io",
    "url": "https://github.com/wangshijun"
  },
  "contributors": [
    "wangshijun <shijun@arcblock.io> (https://github.com/wangshijun)"
  ],
  "homepage": "https://github.com/ArcBlock/blockchain/tree/master/core/forge-util",
  "license": "Apache-2.0",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "files": [
    "lib",
    "esm"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ArcBlock/blockchain.git"
  },
  "bugs": {
    "url": "https://github.com/ArcBlock/blockchain/issues"
  },
  "scripts": {
    "lint": "eslint src tests",
    "lint:fix": "npm run lint -- --fix",
    "test": "jest --forceExit --detectOpenHandles",
    "coverage": "npm run test -- --coverage",
    "clean": "rm -fr lib esm",
    "prebuild": "npm run clean",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build": "npm run build:cjs && npm run build:esm",
    "build:watch": "npm run build -- -w"
  }
}