{
  "name": "@connectum/core",
  "version": "1.2.0",
  "description": "Main server factory with protocol plugin system for Connectum",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./types": {
      "types": "./dist/types.d.ts",
      "default": "./dist/types.js"
    },
    "./config": {
      "types": "./dist/config/index.d.ts",
      "default": "./dist/config/index.js"
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Connectum-Framework/connectum.git",
    "directory": "packages/core"
  },
  "keywords": [
    "connectum",
    "connectrpc",
    "grpc",
    "server",
    "protocols",
    "lifecycle"
  ],
  "author": "Highload.Zone",
  "license": "Apache-2.0",
  "engines": {
    "node": ">=22.13.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@bufbuild/protobuf": "^2.12.1",
    "@connectrpc/connect": "^2.1.2",
    "@connectrpc/connect-node": "^2.1.2",
    "env-var": "^7.5.0",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.5.0",
    "c8": "^10.1.3",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3"
  },
  "scripts": {
    "start": "node src/index.ts",
    "dev": "node --watch src/index.ts",
    "typecheck": "tsc --noEmit",
    "test": "exodus-test --typescript tests/unit/**/*.test.ts tests/integration/**/*.test.ts",
    "test:unit": "exodus-test --typescript tests/unit/**/*.test.ts",
    "test:integration": "exodus-test --typescript tests/integration/**/*.test.ts",
    "test:bun": "exodus-test --engine bun:pure tests/unit/**/*.test.ts",
    "test:esbuild": "exodus-test --esbuild tests/unit/**/*.test.ts",
    "lint": "biome check src",
    "format": "biome check --write src",
    "build": "tsup",
    "clean": "rm -rf coverage dist"
  }
}