{
  "name": "@fractalwagmi/solana-wallet-adapter",
  "version": "0.1.1",
  "description": "Solana wallet adapter implementation for Fractal Wallet",
  "main": "dist/cjs/index.js",
  "types": "dist/esm/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "scripts": {
    "test": "jest",
    "clean": "rm -rf dist && rm -rf *.tsbuildinfo",
    "prepare": "husky install && ts-patch install",
    "prebuild": "npm run clean",
    "build": "npm run build:esm && npm run build:cjs",
    "build:esm": "tsc-esm",
    "build:cjs": "tsc --module commonjs --outDir dist/cjs --target es6",
    "postbuild": "echo '{\"type\":\"commonjs\"}' | npx json > dist/cjs/package.json && echo '{\"type\":\"module\"} ' | npx json > dist/esm/package.json",
    "lint": "eslint --fix",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fractalwagmi/solana-wallet-adapter.git"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/fractalwagmi/solana-wallet-adapter/issues"
  },
  "homepage": "https://github.com/fractalwagmi/solana-wallet-adapter#readme",
  "lint-staged": {
    "src/**/*.{ts,tsx}": "eslint --fix"
  },
  "devDependencies": {
    "@digitak/tsc-esm": "^3.1.4",
    "@types/jest": "^29.0.3",
    "@typescript-eslint/eslint-plugin": "^5.38.0",
    "eslint": "^8.23.1",
    "eslint-config-next": "^12.3.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-sort-destructure-keys": "^1.4.0",
    "eslint-plugin-sort-keys-fix": "^1.1.2",
    "eslint-plugin-typescript-sort-keys": "^2.1.0",
    "eslint-plugin-unicorn": "^43.0.2",
    "husky": "^8.0.1",
    "jest": "^29.0.3",
    "jest-create-mock-instance": "^2.0.0",
    "jest-environment-jsdom": "^29.0.3",
    "jest-localstorage-mock": "^2.4.22",
    "json": "^11.0.0",
    "lint-staged": "^13.0.3",
    "prettier": "^2.7.1",
    "prettier-plugin-jsdoc": "^0.4.2",
    "ts-jest": "^29.0.3",
    "ts-patch": "^2.0.1",
    "typescript": "^4.8.3",
    "typescript-transform-paths": "^3.3.1"
  },
  "dependencies": {
    "@fractalwagmi/popup-connection": "^1.0.18",
    "@solana/wallet-adapter-base": "^0.9.17",
    "bs58": "^5.0.0"
  }
}