{
  "name": "flowx-ai",
  "version": "8.1.0",
  "description": "Advanced AI agent orchestration system with enterprise streaming and mesh coordination - FlowX",
  "main": "cli.js",
  "bin": {
    "flowx": "cli.js",
    "claude-flow": "cli.js",
    "claude-code-flow": "cli.js"
  },
  "scripts": {
    "dev": "tsx src/cli/main.ts",
    "build": "node esbuild.config.cjs",
    "build:ts": "tsc",
    "build:binary": "pkg dist/cli/main.js --targets node18-linux-x64,node18-macos-x64,node18-win-x64,node20-linux-x64,node20-macos-x64,node20-win-x64 --output bin/flowx",
    "build:simple": "npm run build:ts && pkg dist/cli/simple-cli.js --output bin/flowx-simple",
    "typecheck": "tsc --noEmit",
    "test": "node scripts/testing/run-tests.js",
    "test:unit": "node scripts/testing/run-tests.js --unit",
    "test:e2e": "node scripts/testing/run-tests.js --e2e",
    "test:integration": "node scripts/testing/run-tests.js --integration",
    "test:property": "node scripts/testing/run-tests.js --property",
    "test:coverage": "node scripts/testing/run-tests.js --coverage",
    "test:ci": "node scripts/testing/run-tests.js --ci --coverage",
    "test:watch": "node scripts/testing/run-tests.js --watch",
    "coverage:report": "node scripts/coverage/generate-coverage-report.js --detailed --verbose",
    "coverage:open": "open test-results/coverage/lcov-report/index.html || xdg-open test-results/coverage/lcov-report/index.html",
    "coverage:analyze": "node scripts/coverage/identify-low-coverage.js --threshold 80",
    "coverage:badge": "node scripts/coverage/create-coverage-badge.js",
    "lint": "eslint src --ext .ts,.js",
    "format": "prettier --write src",
    "postinstall": "node scripts/install.js",
    "_prepublishOnly": "node scripts/build/prepare-publish.js",
    "prepare-publish": "node scripts/build/prepare-publish.js",
    "validate": "npm run typecheck && npm run lint && npm run test:unit",
    "benchmark": "node benchmark/bin/benchmark-cli.js run \"Benchmark simple task\"",
    "benchmark:test": "node benchmark/bin/benchmark-cli.js test",
    "benchmark:example": "node benchmark/examples/basic.js",
    "hive": "node start-hive.js",
    "hive:demo": "node hive-demo.js",
    "hive:status": "node dist/cli/commands/system/status-command.js --include-hive"
  },
  "keywords": [
    "flowx",
    "ai",
    "agent",
    "orchestration",
    "mcp",
    "workflow",
    "automation",
    "claude",
    "anthropic"
  ],
  "author": "Seth Ford",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sethdford/flowx.git"
  },
  "bugs": {
    "url": "https://github.com/sethdford/flowx/issues"
  },
  "homepage": "https://github.com/sethdford/flowx#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "cli.js",
    "bin/",
    "dist/",
    "src/",
    ".claude/",
    "benchmark/src/",
    "benchmark/simple-benchmark.js",
    "benchmark/bin/",
    "benchmark/examples/",
    "benchmark/README.md",
    "scripts/install.js",
    "README.md",
    "LICENSE",
    "SWARM_TTY_SOLUTION.md",
    "SWARM_VISIBILITY.md"
  ],
  "dependencies": {
    "@anthropic-ai/claude-code": "^1.0.35",
    "@tensorflow/tfjs": "^4.22.0",
    "@tensorflow/tfjs-backend-wasm": "^4.22.0",
    "@tensorflow/tfjs-node": "^4.22.0",
    "better-sqlite3": "^11.10.0",
    "blessed": "^0.1.81",
    "cli-table3": "^0.6.3",
    "commander": "^11.1.0",
    "cors": "^2.8.5",
    "dotenv": "^17.2.0",
    "express": "^4.21.2",
    "fs-extra": "^11.2.0",
    "helmet": "^7.2.0",
    "ink": "^6.0.1",
    "ink-big-text": "^2.0.0",
    "ink-gradient": "^3.0.0",
    "ink-select-input": "^6.2.0",
    "ink-spinner": "^5.0.0",
    "ink-table": "^3.1.0",
    "ink-text-input": "^6.0.0",
    "inquirer": "^9.2.12",
    "morgan": "^1.10.0",
    "nanoid": "^5.0.4",
    "node-pty": "^1.0.0",
    "ora": "^7.0.1",
    "react": "^19.1.0",
    "socket.io": "^4.8.1",
    "sql.js": "^1.13.0",
    "uuid": "^9.0.1",
    "ws": "^8.18.3",
    "yaml": "^2.8.0"
  },
  "devDependencies": {
    "@babel/core": "^7.24.3",
    "@babel/preset-env": "^7.24.3",
    "@jest/globals": "^30.0.4",
    "@stryker-mutator/core": "^9.0.1",
    "@stryker-mutator/jest-runner": "^9.0.1",
    "@swc/cli": "^0.7.8",
    "@swc/core": "^1.3.101",
    "@types/better-sqlite3": "^7.6.13",
    "@types/blessed": "^0.1.25",
    "@types/cors": "^2.8.17",
    "@types/express": "^4.17.23",
    "@types/fs-extra": "^11.0.4",
    "@types/glob": "^8.1.0",
    "@types/ink-testing-library": "^1.0.4",
    "@types/inquirer": "^9.0.8",
    "@types/jest": "^29.5.8",
    "@types/node": "^20.10.5",
    "@types/react": "^19.1.8",
    "@types/socket.io": "^3.0.1",
    "@types/sql.js": "^1.4.9",
    "@types/ws": "^8.18.1",
    "@typescript-eslint/eslint-plugin": "^6.15.0",
    "@typescript-eslint/parser": "^6.15.0",
    "babel-jest": "^29.7.0",
    "benchmark": "^2.1.4",
    "esbuild": "^0.25.5",
    "eslint": "^8.56.0",
    "fast-check": "^3.23.2",
    "ink-testing-library": "^4.0.0",
    "jest": "^30.0.4",
    "jest-environment-node": "^30.0.4",
    "jest-fast-check": "^2.0.0",
    "jest-junit": "^16.0.0",
    "js-yaml": "^4.1.0",
    "microtime": "^3.1.1",
    "mongoose": "^8.16.3",
    "p-queue": "^8.1.0",
    "pixelmatch": "^7.1.0",
    "pkg": "^5.8.1",
    "pngjs": "^7.0.0",
    "prettier": "^3.1.1",
    "puppeteer": "^24.11.2",
    "supertest": "^7.1.3",
    "ts-jest": "^29.4.0",
    "tsx": "^4.6.2",
    "typescript": "^5.3.3"
  },
  "pkg": {
    "targets": [
      "node18-linux-x64",
      "node18-macos-x64",
      "node18-win-x64",
      "node20-linux-x64",
      "node20-macos-x64",
      "node20-win-x64"
    ],
    "scripts": "dist/**/*.js",
    "outputPath": "bin",
    "options": [
      "--experimental-specifier-resolution=node"
    ]
  },
  "type": "module",
  "directories": {
    "doc": "docs",
    "example": "examples",
    "test": "tests"
  }
}
