{
  "name": "@mysten/walrus",
  "version": "1.2.24",
  "private": false,
  "description": "Walrus SDK",
  "license": "Apache-2.0",
  "author": "Mysten Labs <build@mystenlabs.com>",
  "type": "module",
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs",
      "default": "./dist/index.mjs"
    }
  },
  "sideEffects": false,
  "files": [
    "CHANGELOG.md",
    "dist",
    "docs"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MystenLabs/ts-sdks.git"
  },
  "bugs": {
    "url": "https://github.com/mystenlabs/ts-sdks/issues"
  },
  "homepage": "https://sdk.mystenlabs.com/walrus",
  "devDependencies": {
    "@hono/node-server": "^2.1.1",
    "@tanstack/react-query": "^5.101.4",
    "@types/node": "^26.2.0",
    "@types/react": "^19.2.18",
    "@types/react-dom": "^19.2.4",
    "@vitejs/plugin-react": "^6.0.5",
    "hono": "^4.13.7",
    "react": "^19.2.8",
    "react-dom": "^19.2.8",
    "typescript": "^7.0.2",
    "undici": "^8.9.0",
    "vite": "^8.2.1",
    "vitest": "^4.1.11"
  },
  "dependencies": {
    "dataloader": "^2.2.3",
    "@mysten/bcs": "^2.1.1",
    "@mysten/utils": "^0.4.1",
    "@mysten/walrus-wasm": "^0.3.1"
  },
  "peerDependencies": {
    "@mysten/sui": "^2.30.0"
  },
  "scripts": {
    "clean": "rm -rf tsconfig.tsbuildinfo ./dist",
    "build": "rm -rf dist && tsc --noEmit && tsdown",
    "build:docs": "node ../docs/scripts/build-docs.ts",
    "test": "pnpm test:examples && NODE_OPTIONS='--expose-gc' vitest run",
    "test:examples": "tsc --project examples/tsconfig.json --noEmit",
    "codegen": "sui-ts-codegen generate && pnpm lint:fix",
    "prettier:check": "prettier -c --ignore-unknown .",
    "prettier:fix": "prettier -w --ignore-unknown .",
    "oxlint:check": "oxlint  .",
    "oxlint:fix": "oxlint --fix",
    "lint": "pnpm run oxlint:check && pnpm run prettier:check",
    "lint:fix": "pnpm run oxlint:fix && pnpm run prettier:fix",
    "dev:write-from-wallet": "vite examples/write-from-wallet",
    "dev:benchmark": "vite examples/benchmark"
  }
}