{
  "name": "@argent/x-multicall",
  "version": "7.1.0",
  "repository": "github:argentlabs/x-multicall.git",
  "private": false,
  "license": "MIT",
  "main": "./dist/cjs/index.js",
  "browser": "./dist/esm/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "typings": "./dist/types/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "browser": "./dist/esm/index.js",
      "default": "./dist/cjs/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@semantic-release/git": "^10.0.1",
    "bun-types": "latest",
    "semantic-release": "^22.0.5",
    "starknet": "6.1.3"
  },
  "peerDependencies": {
    "typescript": "^5.0.0"
  },
  "scripts": {
    "dev": "bun run build --watch",
    "build": "bun run build:cjs && bun run build:esm && bun run build:types",
    "build:cjs": "tsc --project ./tsconfig.build.json --module commonjs --moduleResolution node --outDir ./dist/cjs --removeComments",
    "build:esm": "tsc --project ./tsconfig.build.json --module es2015 --outDir ./dist/esm",
    "build:types": "tsc --project ./tsconfig.build.json --module esnext --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap",
    "test": "bun test",
    "test:watch": "bun test --watch",
    "devnet": "docker run -p 5050:5050 shardlabs/starknet-devnet-rs:latest-seed0"
  },
  "dependencies": {
    "dataloader": "^2.2.2"
  }
}
