{
  "name": "@majikah/majik-signature",
  "type": "module",
  "description": "Majik Signature is a hybrid post-quantum content signing and verification library for the Majikah ecosystem. Built on top of Majik Key, it provides tamper-proof, forgery-resistant digital signatures for any content format — using a dual-algorithm architecture that combines classical Ed25519 with post-quantum ML-DSA-87 (FIPS-204).",
  "version": "0.3.0",
  "license": "Apache-2.0",
  "author": "Zelijah",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Majikah/majik-signature.git"
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/jedlsf"
  },
  "keywords": [
    "digital-signature",
    "content-signing",
    "content-verification",
    "tamper-proof",
    "tamper-detection",
    "post-quantum",
    "post-quantum-cryptography",
    "hybrid-cryptography",
    "ml-dsa",
    "ml-dsa-87",
    "ed25519",
    "cryptography",
    "signature-verification",
    "data-integrity",
    "content-authentication",
    "majikah",
    "majik-signature"
  ],
  "homepage": "https://github.com/Majikah/majik-signature#readme",
  "bugs": {
    "url": "https://github.com/Majikah/majik-signature/issues"
  },
  "scripts": {
    "build": "tsc",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build",
    "package": "npm run build && npm version patch && git push && git push --tags",
    "test": "vitest run",
    "test:watch": "vitest"
  },
  "dependencies": {
    "@majikah/majik-key": "^0.4.0",
    "@noble/post-quantum": "^0.7.0",
    "@stablelib/ed25519": "^2.1.0",
    "@stablelib/sha256": "^2.0.1",
    "fflate": "^0.8.3"
  },
  "devDependencies": {
    "@types/node": "^26.2.0",
    "typescript": "^7.0.2",
    "vitest": "^4.1.9"
  }
}
