{
  "name": "@iota/iota-names-sdk",
  "author": "IOTA Foundation <info@iota.org>",
  "description": "IOTA-Names SDK",
  "version": "2.0.1",
  "license": "Apache-2.0",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/cjs/index.d.ts",
  "keywords": [
    "IOTA",
    "IOTA-Names"
  ],
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "sideEffects": false,
  "files": [
    "dist",
    "src"
  ],
  "engines": {
    "node": ">=24"
  },
  "peerDependencies": {
    "@iota/iota-sdk": "^1.15.1"
  },
  "dependencies": {
    "@noble/hashes": "^1.4.0"
  },
  "devDependencies": {
    "@types/tmp": "^0.2.6",
    "ts-retry-promise": "^0.8.1",
    "tsx": "^4.8.1",
    "typescript": "^5.5.3",
    "vite": "^8.0.1",
    "vitest": "^4.1.0",
    "@iota/graphql-transport": "^0.18.1",
    "@iota/iota-sdk": "^1.15.1",
    "@iota/build-scripts": "^0.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/iotaledger/ts-packages.git"
  },
  "bugs": {
    "url": "https://github.com/iotaledger/ts-packages/issues"
  },
  "scripts": {
    "clean": "rm -rf tsconfig.tsbuildinfo ./dist",
    "build": "build-package",
    "prettier:check": "prettier -c --ignore-unknown .",
    "prettier:fix": "prettier -w --ignore-unknown .",
    "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",
    "test:e2e": "vitest run",
    "run:example": "tsx"
  }
}