{
  "name": "@mojsoski/server-crypto",
  "version": "2.0.2",
  "description": "Asymmetric key-exchange cryptography library",
  "main": "dist/lib/index.js",
  "types": "dist/lib/index.d.ts",
  "keywords": [
    "cryptography",
    "crypto",
    "key",
    "exchange"
  ],
  "author": "Mihail Mojsoski",
  "license": "MIT",
  "type": "commonjs",
  "scripts": {
    "watch": "npx tsc --watch",
    "build": "npx tsc",
    "prepare": "npm run build",
    "version": "git add -A lib",
    "postversion": "git push && git push --tags",
    "start": "node dist/example.js"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/jsonwebtoken": "^9.0.9",
    "@types/node": "^22.15.17",
    "typescript": "^5.8.3"
  },
  "dependencies": {
    "@mojsoski/assert": "^1.0.0",
    "@mojsoski/async-stream": "^1.0.0"
  },
  "optionalDependencies": {
    "jsonwebtoken": "^9.0.2",
    "jose": "^6.0.11"
  }
}
