{
  "name": "@slicekit/erc8128",
  "version": "0.3.3",
  "description": "Minimal ERC-8128 implementation for signing and verifying HTTP requests with Ethereum accounts",
  "scripts": {
    "format": "biome format --write",
    "lint": "biome lint --write",
    "check": "biome check --write",
    "build": "bun run build.ts",
    "test": "bun test"
  },
  "publishConfig": {
    "access": "public"
  },
  "author": "slice-so",
  "license": "MIT",
  "type": "module",
  "main": "./dist/esm/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/esm/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/esm/index.d.ts",
      "import": "./dist/esm/index.js",
      "default": "./dist/esm/index.js"
    }
  },
  "files": [
    "./dist"
  ],
  "dependencies": {
    "@noble/hashes": "^1.8.0"
  },
  "peerDependencies": {},
  "repository": {
    "type": "git",
    "url": "https://github.com/slice-so/erc8128"
  },
  "homepage": "https://erc8128.org",
  "keywords": [
    "http",
    "ethereum",
    "wallet",
    "web3",
    "dapp",
    "dappkit"
  ]
}
