{
  "name": "@li0ard/streebog",
  "version": "0.2.6",
  "author": "li0ard",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/li0ard/streebog.git"
  },
  "main": "dist/index.js",
  "devDependencies": {
    "@types/bun": "latest",
    "typedoc": "^0.28.19"
  },
  "peerDependencies": {
    "typescript": "^5.9.3"
  },
  "bugs": {
    "url": "https://github.com/li0ard/streebog/issues"
  },
  "description": "Streebog hash function in pure TypeScript",
  "files": ["dist"],
  "homepage": "https://github.com/li0ard/streebog#readme",
  "keywords": ["gost", "crypto", "streebog"],
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "rm -rf dist/ && tsc --project tsconfig.build.json",
    "docs": "rm -rf docs/ && typedoc --options .config/typedoc/config.cjs"
  },
  "type": "module",
  "types": "dist/index.d.ts",
  "dependencies": {
    "@noble/hashes": "^2.2.0"
  }
}