{
  "name": "sigild",
  "version": "0.0.13",
  "mcpName": "io.github.cdrn/sigil",
  "description": "Claude can sign, but never see. MCP server + CLI that keeps private keys out of the LLM's context window.",
  "license": "Apache-2.0",
  "author": "Chris Doran",
  "homepage": "https://github.com/cdrn/sigil#readme",
  "bugs": {
    "url": "https://github.com/cdrn/sigil/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cdrn/sigil.git"
  },
  "keywords": [
    "claude",
    "claude-code",
    "anthropic",
    "agent",
    "mcp",
    "model-context-protocol",
    "signing",
    "ethereum",
    "eip-1559",
    "eip-712",
    "eip-191",
    "key-management",
    "wallet-security",
    "supply-chain"
  ],
  "type": "module",
  "bin": {
    "sigil": "dist/src/bin/sigil.js",
    "sigil-mcp": "dist/src/bin/sigil-mcp.js",
    "sigild": "dist/src/bin/sigil-mcp.js",
    "sigil-hook-pre": "dist/src/bin/sigil-hook-pre.js",
    "sigil-hook-post": "dist/src/bin/sigil-hook-post.js"
  },
  "files": [
    "dist/src/**/*",
    "README.md",
    "THREAT_MODEL.md",
    "SECURITY.md",
    "CONTRIBUTING.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=22.0.0"
  },
  "scripts": {
    "build": "tsc && node scripts/post-build.mjs",
    "test": "npm run build && node --test 'dist/test/**/*.test.js'",
    "test:watch": "node --watch --test 'dist/test/**/*.test.js'",
    "lint": "eslint src test scripts eslint.config.mjs",
    "format": "prettier --write 'src/**/*.ts' 'test/**/*.ts' 'scripts/**/*.mjs' eslint.config.mjs",
    "format:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts' 'scripts/**/*.mjs' eslint.config.mjs"
  },
  "dependencies": {
    "@iarna/toml": "2.2.5",
    "@noble/ciphers": "2.4.0",
    "@noble/ed25519": "3.2.0",
    "@noble/hashes": "2.4.0",
    "@noble/secp256k1": "3.2.0",
    "qrcode-generator": "2.0.4"
  },
  "devDependencies": {
    "@eslint/js": "10.0.1",
    "@types/node": "^22.10.0",
    "eslint": "10.6.0",
    "globals": "17.7.0",
    "prettier": "3.9.4",
    "typescript": "^6.0.3",
    "typescript-eslint": "8.63.0"
  }
}
