package.json•2.57 kB
{
  "name": "@curupira/shared",
  "version": "2.11.0",
  "description": "Shared types and utilities for Curupira",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./config": {
      "import": "./dist/config/index.js",
      "types": "./dist/config/index.d.ts"
    },
    "./logging": {
      "import": "./dist/logging/index.js",
      "types": "./dist/logging/index.d.ts"
    },
    "./errors": {
      "import": "./dist/errors/index.js",
      "types": "./dist/errors/index.d.ts"
    },
    "./transport": {
      "import": "./dist/transport/index.js",
      "types": "./dist/transport/index.d.ts"
    },
    "./protocol": {
      "import": "./dist/protocol/index.js",
      "types": "./dist/protocol/index.d.ts"
    },
    "./security": {
      "import": "./dist/security/index.js",
      "types": "./dist/security/index.d.ts"
    },
    "./messages": {
      "import": "./dist/messages/index.js",
      "types": "./dist/messages/index.d.ts"
    },
    "./utils": {
      "import": "./dist/utils/index.js",
      "types": "./dist/utils/index.d.ts"
    },
    "./types": {
      "import": "./dist/types/index.js",
      "types": "./dist/types/index.d.ts"
    },
    "./cdp-types": {
      "import": "./dist/cdp-types/index.js",
      "types": "./dist/cdp-types/index.d.ts"
    }
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "clean": "rm -rf dist *.tsbuildinfo",
    "test": "vitest run",
    "test:watch": "vitest",
    "type-check": "tsc --noEmit",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "@types/jsonwebtoken": "^9.0.10",
    "jsonwebtoken": "^9.0.2",
    "js-yaml": "^4.1.0",
    "pino": "^8.21.0",
    "ws": "^8.18.3",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^20.19.14",
    "@types/ws": "^8.18.1",
    "pino-pretty": "^10.3.1",
    "tsd": "^0.29.0",
    "typescript": "^5.9.2",
    "vitest": "^1.6.1"
  },
  "keywords": [
    "curupira",
    "mcp",
    "shared",
    "types",
    "utilities"
  ],
  "author": "Nexus Team",
  "license": "MIT",
  "homepage": "https://github.com/drzln/curupira#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/drzln/curupira.git"
  },
  "bugs": {
    "url": "https://github.com/drzln/curupira/issues"
  },
  "private": true,
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=20.0.0"
  }
}