{
  "name": "@wallet-standard/react-core",
  "version": "1.0.1",
  "author": "Solana Maintainers <maintainers@solana.foundation>",
  "repository": "https://github.com/wallet-standard/wallet-standard",
  "license": "Apache-2.0",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "lib",
    "src",
    "LICENSE"
  ],
  "engines": {
    "node": ">=16"
  },
  "type": "module",
  "sideEffects": false,
  "main": "./lib/cjs/index.js",
  "module": "./lib/esm/index.js",
  "types": "./lib/types/index.d.ts",
  "exports": {
    "require": "./lib/cjs/index.js",
    "import": "./lib/esm/index.js",
    "types": "./lib/types/index.d.ts"
  },
  "peerDependencies": {
    "react": ">=18",
    "react-dom": ">=18"
  },
  "dependencies": {
    "@wallet-standard/app": "^1.1.0",
    "@wallet-standard/base": "^1.1.0",
    "@wallet-standard/errors": "^0.1.1",
    "@wallet-standard/features": "^1.1.0",
    "@wallet-standard/ui": "^1.0.1",
    "@wallet-standard/ui-registry": "^1.0.1",
    "@wallet-standard/experimental-features": "^0.2.0"
  },
  "devDependencies": {
    "@types/react": "^18.3",
    "@types/react-dom": "^18.3",
    "@types/react-test-renderer": "^18.3",
    "react": "^18.3",
    "react-dom": "^18.3",
    "react-error-boundary": "^5.0.0",
    "react-test-renderer": "^18.3",
    "shx": "^0.4.0"
  },
  "scripts": {
    "clean": "shx mkdir -p lib && shx rm -rf lib",
    "package": "shx mkdir -p lib/cjs && shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json",
    "test": "jest -c ../../../node_modules/@wallet-standard/test-config/jest.config.ts --rootDir . --silent"
  }
}