{
  "name": "@imtbl/orderbook",
  "version": "2.16.0",
  "author": "Immutable",
  "bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
  "dependencies": {
    "@imtbl/config": "2.16.0",
    "@imtbl/metrics": "2.16.0",
    "@opensea/seaport-js": "4.0.3",
    "axios": "^1.6.5",
    "ethers": "^6.13.4",
    "form-data": "^4.0.0",
    "merkletreejs": "^0.3.11"
  },
  "devDependencies": {
    "@swc/core": "^1.4.2",
    "@swc/jest": "^0.2.37",
    "@typechain/ethers-v6": "^0.5.1",
    "@types/jest": "^29.5.12",
    "dotenv": "^16.0.3",
    "eslint": "^8.56.0",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.4.3",
    "ts-mockito": "^2.6.1",
    "tsup": "^8.3.0",
    "typechain": "^8.1.1",
    "typescript": "^5.6.2"
  },
  "exports": {
    "development": {
      "types": "./src/index.ts",
      "browser": "./dist/browser/index.js",
      "require": "./dist/node/index.cjs",
      "default": "./dist/node/index.js"
    },
    "default": {
      "types": "./dist/types/index.d.ts",
      "browser": "./dist/browser/index.js",
      "require": "./dist/node/index.cjs",
      "default": "./dist/node/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "homepage": "https://github.com/immutable/ts-immutable-sdk#readme",
  "license": "Apache-2.0",
  "main": "dist/node/index.cjs",
  "module": "dist/node/index.js",
  "browser": "dist/browser/index.js",
  "publishConfig": {
    "access": "public"
  },
  "repository": "immutable/ts-immutable-sdk.git",
  "type": "module",
  "types": "./dist/types/index.d.ts",
  "scripts": {
    "build": "pnpm transpile && pnpm typegen",
    "transpile": "tsup src/index.ts --config ../../tsup.config.js",
    "typegen": "tsc --customConditions default --emitDeclarationOnly --outDir dist/types",
    "pack:root": "pnpm pack --pack-destination $(dirname $(pnpm root -w))",
    "generate-types": "typechain --target=ethers-v6 --out-dir=src/typechain/types 'abi/*.json'",
    "lint": "eslint ./src --ext .ts,.jsx,.tsx --max-warnings=0",
    "lint:fix": "eslint ./src --ext .ts,.jsx,.tsx --max-warnings=0 --fix",
    "run:demo": "jest --runInBand --testMatch \"**/?(*.)+(demo).[jt]s?(x)\"",
    "run:demo-expiry": "jest  --runInBand --testMatch \"**/(expiry.demo).[jt]s?(x)\"",
    "run:demo-fulfill": "jest --runInBand --testMatch \"**/(fulfill.demo).[jt]s?(x)\"",
    "run:demo-fulfill-bulk": "jest --runInBand --testMatch \"**/(fulfillBulk.demo).[jt]s?(x)\"",
    "test": "jest",
    "test:e2e": "jest --runInBand --testMatch \"**/?(*.)+(e2e).[jt]s?(x)\"",
    "test:watch": "jest --watch",
    "typecheck": "tsc --customConditions default --noEmit --jsx preserve"
  }
}