{
  "name": "@iota/dapp-kit",
  "author": "IOTA Foundation <info@iota.org>",
  "description": "A collection of React hooks and components for interacting with the IOTA blockchain and wallets.",
  "homepage": "https://docs.iota.org/developer/ts-sdk/dapp-kit/",
  "repository": "https://github.com/iotaledger/ts-packages",
  "version": "0.10.3",
  "license": "Apache-2.0",
  "files": [
    "CHANGELOG.md",
    "LICENSE",
    "README.md",
    "dist",
    "src"
  ],
  "type": "commonjs",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/cjs/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    },
    "./dist/index.css": {
      "import": "./dist/esm/index.css",
      "require": "./dist/cjs/index.css"
    }
  },
  "bugs": {
    "url": "https://github.com/iotaledger/ts-packages/issues/new"
  },
  "size-limit": [
    {
      "path": "dist/esm/index.js",
      "limit": "100 KB"
    },
    {
      "path": "dist/cjs/index.js",
      "limit": "100 KB"
    }
  ],
  "devDependencies": {
    "@size-limit/preset-small-lib": "^11.1.4",
    "@tanstack/react-query": "^5.50.1",
    "@testing-library/dom": "^10.3.1",
    "@testing-library/jest-dom": "^6.4.6",
    "@testing-library/react": "^16.0.0",
    "@testing-library/user-event": "^14.5.2",
    "@types/react": "^18.3.3",
    "@vanilla-extract/vite-plugin": "^5.2.1",
    "dotenv": "^16.4.5",
    "react": "^18.3.1",
    "size-limit": "^11.1.4",
    "typescript": "^5.5.3",
    "vitest": "^4.1.0",
    "@iota/build-scripts": "0.0.0"
  },
  "dependencies": {
    "@radix-ui/react-dialog": "^1.1.1",
    "@radix-ui/react-dropdown-menu": "^2.1.1",
    "@radix-ui/react-slot": "^1.1.0",
    "@vanilla-extract/css": "^1.15.3",
    "@vanilla-extract/dynamic": "^2.1.1",
    "@vanilla-extract/recipes": "^0.5.3",
    "clsx": "^2.1.1",
    "zustand": "^4.4.1",
    "@iota/iota-names-sdk": "^2.0.0",
    "@iota/iota-sdk": "1.15.0",
    "@iota/wallet-standard": "0.4.4"
  },
  "peerDependencies": {
    "@tanstack/react-query": "^5.50.1",
    "react": "*"
  },
  "sideEffects": [
    "*.css.ts",
    "*.css"
  ],
  "scripts": {
    "clean": "rm -rf tsconfig.tsbuildinfo ./dist",
    "build": "build-dapp-kit",
    "test": "pnpm test:typecheck && pnpm vitest run",
    "test:typecheck": "tsc -b ./test",
    "size": "size-limit",
    "analyze": "size-limit --why",
    "prettier:check": "prettier -c --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
    "prettier:fix": "prettier -w --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
    "eslint:check": "eslint --max-warnings=0 .",
    "eslint:fix": "pnpm run eslint:check --fix",
    "lint": "pnpm run eslint:check && pnpm run prettier:check",
    "lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix"
  }
}