{
  "name": "threadforge",
  "version": "0.2.9",
  "description": "Multi-threaded Node.js service runtime framework",
  "type": "module",
  "bin": {
    "forge": "./bin/forge.js"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./service": {
      "types": "./dist/services/Service.d.ts",
      "default": "./dist/services/Service.js"
    },
    "./config": {
      "types": "./dist/core/config.d.ts",
      "default": "./dist/core/config.js"
    },
    "./decorators": {
      "types": "./dist/decorators/index.d.ts",
      "default": "./dist/decorators/index.js"
    },
    "./plugins": {
      "types": "./dist/plugins/index.d.ts",
      "default": "./dist/plugins/index.js"
    },
    "./plugins/redis": {
      "types": "./dist/plugins/redis.d.ts",
      "default": "./dist/plugins/redis.js"
    },
    "./plugins/postgres": {
      "types": "./dist/plugins/postgres.d.ts",
      "default": "./dist/plugins/postgres.js"
    },
    "./ingress": {
      "types": "./dist/core/Ingress.d.ts",
      "default": "./dist/core/Ingress.js"
    },
    "./frontend": {
      "types": "./dist/frontend/index.d.ts",
      "default": "./dist/frontend/index.js"
    },
    "./frontend/plugins": {
      "types": "./dist/frontend/plugins/index.d.ts",
      "default": "./dist/frontend/plugins/index.js"
    },
    "./internals": {
      "types": "./dist/internals.d.ts",
      "default": "./dist/internals.js"
    }
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsx bin/forge.js dev",
    "start": "node bin/forge.js start",
    "test": "tsc && tsx --test tests/*.test.js",
    "test:watch": "tsx --test --watch tests/*.test.js",
    "test:coverage": "tsc && tsx --experimental-test-coverage --test tests/*.test.js",
    "lint": "biome check .",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "microservices",
    "multi-threaded",
    "cluster",
    "multi-process",
    "ipc",
    "service-mesh",
    "service-runtime"
  ],
  "author": "ThreadForge Contributors",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/ChrisBland/threadforge.git"
  },
  "homepage": "https://github.com/ChrisBland/threadforge#readme",
  "bugs": {
    "url": "https://github.com/ChrisBland/threadforge/issues"
  },
  "files": [
    "dist/",
    "bin/",
    "shared/",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "peerDependencies": {
    "ioredis": "^5.3.0",
    "pg": "^8.11.0"
  },
  "peerDependenciesMeta": {
    "ioredis": {
      "optional": true
    },
    "pg": {
      "optional": true
    }
  },
  "devDependencies": {
    "@biomejs/biome": "^2.3.15",
    "@types/node": "^25.2.3",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "@oclif/core": "^4.8.0",
    "@oclif/plugin-help": "^6.2.37",
    "tsx": "^4.21.0"
  },
  "oclif": {
    "bin": "forge",
    "commands": {
      "strategy": "pattern",
      "target": "./dist/cli/commands",
      "globPatterns": [
        "**/*.js"
      ]
    },
    "topicSeparator": " ",
    "plugins": [
      "@oclif/plugin-help"
    ]
  }
}
