{
  "name": "@hasna/identities",
  "version": "0.1.8",
  "description": "Open identity records for humans and AI agents",
  "type": "module",
  "main": "dist/src/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "identities": "dist/src/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/src/index.js"
    },
    "./storage": {
      "types": "./dist/storage.d.ts",
      "import": "./dist/src/storage.js"
    },
    "./browserplan": {
      "types": "./dist/browserplan.d.ts",
      "import": "./dist/src/browserplan.js"
    },
    "./integrations": {
      "types": "./dist/integrations.d.ts",
      "import": "./dist/src/integrations.js"
    },
    "./instructions": {
      "types": "./dist/instructions.d.ts",
      "import": "./dist/src/instructions.js"
    },
    "./global-agent-rules": {
      "types": "./dist/global-agent-rules.d.ts",
      "import": "./dist/src/global-agent-rules.js"
    },
    "./ecosystem": {
      "types": "./dist/ecosystem.d.ts",
      "import": "./dist/src/ecosystem.js"
    },
    "./eve": {
      "types": "./dist/eve.d.ts",
      "import": "./dist/src/eve.js"
    },
    "./status": {
      "types": "./dist/status.d.ts",
      "import": "./dist/src/status.js"
    },
    "./media": {
      "types": "./dist/media.d.ts",
      "import": "./dist/src/media.js"
    },
    "./roster": {
      "types": "./dist/roster.d.ts",
      "import": "./dist/src/roster.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "SECURITY.md",
    "CODE_OF_CONDUCT.md",
    "PROMPT.md",
    "SOUL.md",
    "PERSONALITY.md",
    "ETHOS.md",
    "VOICE.md",
    "docs",
    "agents"
  ],
  "scripts": {
    "clean": "rm -rf dist",
    "build": "bun run clean && bun build ./src/index.ts ./src/storage.ts ./src/browserplan.ts ./src/integrations.ts ./src/instructions.ts ./src/global-agent-rules.ts ./src/ecosystem.ts ./src/eve.ts ./src/status.ts ./src/media.ts ./src/roster.ts ./src/cli.ts --outdir dist --target bun && tsc --emitDeclarationOnly --outDir dist",
    "typecheck": "tsc --noEmit",
    "test": "bun test",
    "verify:release": "bun run typecheck && bun test && bun run build && npm pack --dry-run --ignore-scripts",
    "dev:cli": "bun run src/cli.ts",
    "prepublishOnly": "bun run verify:release",
    "postinstall": "mkdir -p $HOME/.hasna/identities 2>/dev/null || true"
  },
  "keywords": [
    "identity",
    "identities",
    "ai",
    "agents",
    "humans",
    "mailery",
    "telephony",
    "mcp",
    "cli"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hasna/identities.git"
  },
  "homepage": "https://github.com/hasna/identities",
  "bugs": {
    "url": "https://github.com/hasna/identities/issues"
  },
  "engines": {
    "bun": ">=1.0.0"
  },
  "author": "Andrei Hasna <andrei@hasna.com>",
  "license": "Apache-2.0",
  "devDependencies": {
    "@types/bun": "^1.2.4",
    "@types/node": "^22.13.4",
    "typescript": "^5.7.3"
  }
}
