{
  "name": "@mysten/kiosk",
  "author": "Mysten Labs <build@mystenlabs.com>",
  "description": "Sui Kiosk library",
  "version": "1.4.4",
  "license": "Apache-2.0",
  "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",
    "src"
  ],
  "engines": {
    "node": ">=18"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MystenLabs/ts-sdks.git"
  },
  "bugs": {
    "url": "https://github.com/MystenLabs/ts-sdks/issues/new"
  },
  "dependencies": {
    "@mysten/bcs": "^2.1.1"
  },
  "devDependencies": {
    "cross-env": "^10.1.0",
    "tmp": "^0.2.7",
    "ts-retry-promise": "^0.8.1",
    "typescript": "^7.0.2",
    "vite": "^8.2.1",
    "vitest": "^4.1.10",
    "wait-on": "^9.1.0"
  },
  "peerDependencies": {
    "@mysten/sui": "^2.26.2"
  },
  "scripts": {
    "build": "rm -rf dist && tsc --noEmit && tsdown",
    "build:docs": "node ../docs/scripts/build-docs.ts",
    "codegen": "sui-ts-codegen generate && pnpm lint:fix",
    "test": "vitest run --typecheck --config vitest.unit.config.mts",
    "pre-commit": "pnpm prettier:fix && pnpm lint && pnpm build",
    "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",
    "test:e2e": "vitest run e2e"
  }
}