{
  "name": "@aptos-connect/wallet-adapter-plugin",
  "version": "3.0.2",
  "private": false,
  "license": "MIT",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    "require": "./dist/index.js",
    "import": "./dist/index.mjs",
    "types": "./dist/index.d.ts"
  },
  "dependencies": {
    "@aptos-labs/wallet-standard": "^0.5.0",
    "@identity-connect/crypto": "0.3.0",
    "@aptos-connect/wallet-api": "0.6.0",
    "@identity-connect/dapp-sdk": "0.16.1"
  },
  "peerDependencies": {
    "@aptos-labs/ts-sdk": "^1.33.1 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
  },
  "devDependencies": {
    "@types/node": "^22.18.1",
    "tsup": "^7.1.0",
    "typescript": "5.4.3",
    "@petra/tsconfig": "0.0.0"
  },
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "build:bundle": "tsup src/index.ts --tsconfig tsconfig.build.json --format cjs,esm --sourcemap",
    "build:declarations": "tsc --project tsconfig.build.json --emitDeclarationOnly --declaration --declarationMap",
    "build": "pnpm build:bundle && pnpm build:declarations",
    "lint": "biome check",
    "lint:fix": "biome check --write --unsafe",
    "lint:tsc": "tsgo --noEmit -p ./tsconfig.json"
  }
}