{
  "name": "@aptos-connect/wallet-api",
  "version": "0.6.1",
  "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.2",
    "@identity-connect/api": "0.8.0"
  },
  "peerDependencies": {
    "@aptos-labs/ts-sdk": "^5 || ^6"
  },
  "devDependencies": {
    "@types/jest": "^29.5.1",
    "jest": "^29.7.0",
    "ts-jest": "^29.0.5",
    "ts-node": "10.9.1",
    "tsup": "^8.2.4",
    "@petra/tsconfig": "0.0.0"
  },
  "files": [
    "dist",
    "src",
    "!src/**.test.ts",
    "!src/**/__tests__"
  ],
  "scripts": {
    "build:bundle": "tsup src/index.ts --tsconfig tsconfig.build.json --format cjs,esm --sourcemap",
    "build:declarations": "tsgo --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",
    "test": "jest"
  }
}