{
  "name": "@glif/filecoin-actor-utils",
  "version": "4.0.0",
  "description": "Utilities for retrieving actor codes / names and inspecting actor state and methods",
  "main": "./dist/index.js",
  "browser": "./lib/index.js",
  "module": "./module/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "start": "npm run clean && npm run build:watch",
    "clean": "rimraf dist/ lib/ module/",
    "build-browser": "cross-env BABEL_ENV=browser babel ./src --out-dir ./lib --copy-files --extensions \".ts,.tsx\" --source-maps --ignore '**/__tests__'",
    "build-module": "cross-env BABEL_ENV=module babel ./src --out-dir ./module --copy-files --extensions \".ts,.tsx\" --source-maps --ignore '**/__tests__'",
    "build-node": "babel ./src --out-dir ./dist --copy-files --extensions \".ts,.tsx\" --source-maps --ignore '**/__tests__'",
    "build-types": "tsc --emitDeclarationOnly",
    "build": "npm run clean && npm run build-types && npm run build-node && npm run build-browser && npm run build-module",
    "build:watch": "npm run build-browser -- --watch",
    "prepublishOnly": "npm run build",
    "lint": "eslint --ext .jsx,.js,.ts,.tsx ./src",
    "lint:fix": "eslint --ext .jsx,.js,.ts,.tsx ./src --fix",
    "test": "npm run lint && npm run build && jest",
    "test:watch": "npm run build && jest --watch",
    "type-check": "tsc --noEmit",
    "type-check:watch": "npm run type-check -- --watch"
  },
  "author": "Infinite Scroll <squad@infinitescroll.org> (https://infinitescroll.org)",
  "license": "(Apache-2.0 OR MIT)",
  "dependencies": {
    "@glif/filecoin-address": "^4.0.0",
    "@ipld/dag-cbor": "^9.2.1",
    "ethers": "^6.13.2",
    "lodash.clonedeep": "^4.5.0",
    "uint8arrays": "^3.1.0"
  },
  "devDependencies": {
    "@types/lodash.clonedeep": "^4.5.9",
    "@typescript-eslint/eslint-plugin": "^5.35.1",
    "@typescript-eslint/parser": "^5.35.1",
    "eslint": "^8.22.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.2.1",
    "prettier": "^2.7.1"
  },
  "files": [
    "dist",
    "lib",
    "module"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/glifio/modules/tree/primary/packages/filecoin-actor-utils"
  },
  "gitHead": "0bb90b90d733180e878ce8c042e670c87fce7851"
}
