{
  "name": "@wormhole-labs/sui-ptb-resolver",
  "version": "2.0.0",
  "description": "SUI PTB resolver - SDK and Move packages for on-chain modules to describe off chain PTB building and resolving data.",
  "private": false,
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./commitlint": "./config/commitlint.config.mjs",
    "./prettier": "./config/prettier.config.js",
    "./eslint": "./config/eslint.config.js",
    "./package.json": "./package.json"
  },
  "scripts": {
    "build:resolver": "sui move build -p sui_ptb_resolver",
    "test:resolver": "sui move test -p sui_ptb_resolver",
    "test": "bun test src/",
    "example:token-bridge": "bun examples/token_bridge_resolver_sample.ts",
    "prepare": "husky",
    "build": "bun build src/index.ts --outdir dist && tsc --emitDeclarationOnly --outDir dist",
    "prebuild": "rm -rf dist",
    "lint": "eslint .",
    "lint:fix": "eslint --fix --report-unused-disable-directives --max-warnings 0 .",
    "typecheck": "tsc -p tsconfig.test.json",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "validate": "bun run lint && bun run typecheck && bun run format:check",
    "test:release": "GH_TOKEN=$(gh auth token) npx semantic-release --dry-run"
  },
  "keywords": [
    "wormhole",
    "sui",
    "ptb",
    "commitlint",
    "prettier",
    "eslint",
    "release-automation"
  ],
  "author": "Wormhole Labs",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wormholelabs-xyz/sui-ptb-resolver.git"
  },
  "bugs": {
    "url": "https://github.com/wormholelabs-xyz/sui-ptb-resolve/issues"
  },
  "homepage": "https://github.com/wormholelabs-xyz/sui-ptb-resolve#readme",
  "files": [
    "dist",
    "config",
    "README.md",
    "LICENSE"
  ],
  "devDependencies": {
    "@commitlint/cli": "^19.8.1",
    "@commitlint/config-conventional": "^19.8.1",
    "@eslint/js": "^9.30.1",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/github": "^12.0.0",
    "@semantic-release/npm": "^13.1.1",
    "@types/bun": "^1.3.14",
    "@types/node": "^22.10.5",
    "@typescript-eslint/eslint-plugin": "^8.36.0",
    "@typescript-eslint/parser": "^8.36.0",
    "commitizen": "^4.3.1",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^9.30.1",
    "eslint-config-prettier": "^10.1.5",
    "eslint-config-standard": "^17.1.0",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-n": "^17.17.0",
    "eslint-plugin-prettier": "^5.5.1",
    "eslint-plugin-promise": "^7.2.1",
    "eslint-plugin-simple-import-sort": "^12.1.1",
    "husky": "^9.1.7",
    "prettier": "^3.6.2",
    "semantic-release": "^25.0.1",
    "semantic-release-unsquash": "^0.3.0",
    "typescript": "^5.8.3"
  },
  "dependencies": {
    "@mysten/sui": "2.14.1"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "engines": {
    "node": ">=20.0.0",
    "bun": ">=1.3.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/",
    "provenance": true
  }
}
