{
  "name": "@bsv/wallet-toolbox",
  "version": "2.3.2",
  "description": "BRC100 conforming wallet, wallet storage and wallet signer components",
  "main": "./out/src/index.js",
  "types": "./out/src/index.d.ts",
  "files": [
    "out/src/",
    "docs/",
    "README.md",
    "CHANGELOG.md",
    "license.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bsv-blockchain/ts-stack.git",
    "directory": "packages/wallet/wallet-toolbox"
  },
  "author": "Tone Engel",
  "license": "SEE LICENSE IN license.md",
  "keywords": [
    "bsv",
    "babbage",
    "wallet",
    "BRC100"
  ],
  "bugs": {
    "url": "https://github.com/bsv-blockchain/ts-stack/issues"
  },
  "homepage": "https://github.com/bsv-blockchain/ts-stack/tree/main/packages/wallet/wallet-toolbox#readme",
  "dependencies": {
    "better-sqlite3": "^12.10.1",
    "express": "^5.2.1",
    "hash-wasm": "^4.12.0",
    "idb": "^8.0.2",
    "knex": "^3.2.10",
    "mysql2": "^3.22.5",
    "ws": "^8.21.0",
    "@bsv/auth-express-middleware": "^2.1.0",
    "@bsv/payment-express-middleware": "^2.1.0"
  },
  "devDependencies": {
    "@jest/globals": "^30.4.1",
    "@types/body-parser": "^1.19.5",
    "@types/cors": "^2.8.13",
    "@types/diff": "^8.0.0",
    "@types/fs-extra": "^11.0.4",
    "@types/jest": "^30.0.0",
    "@types/jest-diff": "^24.3.0",
    "@types/node": "^25.9.3",
    "chalk": "^4.1.2",
    "cors": "^2.8.5",
    "dotenv": "^17.4.2",
    "fake-indexeddb": "^6.0.0",
    "fs-extra": "^11.3.5",
    "jest": "^30.4.2",
    "ts-jest": "^29.4.11",
    "ts-node": "^10.9.1",
    "ts-standard": "^12.0.0",
    "ts2md": "^0.2.8",
    "typescript": "^6.0.3",
    "@bsv/sdk": "^2.1.3"
  },
  "peerDependencies": {
    "@bsv/sdk": "^2.1.6"
  },
  "peerDependenciesMeta": {
    "@bsv/sdk": {
      "optional": false
    }
  },
  "scripts": {
    "test": "npm run build && jest --testPathIgnorePatterns=man.test.ts",
    "test:watch": "npm run build && jest --testPathIgnorePatterns=man.test.ts --watch",
    "test:coverage": "npm run build && jest --testPathIgnorePatterns=man.test.ts --coverage",
    "lint": "ts-standard --fix src/**/*.ts",
    "lint:ci": "ts-standard src/**/*.ts",
    "build": "tsc --build",
    "prepublish": "npm run build && npm run doc && npm run sync-versions",
    "doc": "ts2md",
    "sync-versions": "node syncVersions.js"
  }
}