{
  "name": "pulse-protocol",
  "version": "0.9.4",
  "description": "Autonomous AI agent scanner for Solana. Returns a verdict: autonomous, hybrid, or human. Fake agents have no pulse.",
  "keywords": [
    "solana",
    "ai",
    "agents",
    "scanner",
    "detection",
    "autonomy",
    "verdict",
    "behavioral-analysis",
    "on-chain",
    "fingerprinting",
    "pulse",
    "pulse-protocol"
  ],
  "homepage": "https://pulseprotocol.tech",
  "bugs": {
    "url": "https://github.com/williambrowndev/pulse-protocol/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/williambrowndev/pulse-protocol.git"
  },
  "license": "MIT",
  "author": {
    "name": "pulse protocol",
    "url": "https://x.com/pulseprotocol_"
  },
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "pulse": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./daemon": {
      "types": "./dist/daemon/index.d.ts",
      "import": "./dist/daemon/index.js"
    },
    "./detectors": {
      "types": "./dist/detectors/index.d.ts",
      "import": "./dist/detectors/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src --ext .ts",
    "format": "prettier --write \"src/**/*.ts\"",
    "typecheck": "tsc --noEmit",
    "release": "changeset publish"
  },
  "dependencies": {
    "@noble/ed25519": "^2.1.0",
    "@noble/hashes": "^1.4.0",
    "chalk": "^5.3.0",
    "commander": "^12.1.0",
    "eventemitter3": "^5.0.1",
    "ora": "^8.0.1",
    "yaml": "^2.5.0",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@changesets/cli": "^2.27.7",
    "@types/node": "^20.14.9",
    "@typescript-eslint/eslint-plugin": "^7.15.0",
    "@typescript-eslint/parser": "^7.15.0",
    "@vitest/coverage-v8": "^1.6.0",
    "eslint": "^8.57.0",
    "prettier": "^3.3.2",
    "tsup": "^8.1.0",
    "typescript": "^5.5.3",
    "vitest": "^1.6.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
