{
  "name": "@mcpcodex/syndicodex",
  "version": "1.0.9",
  "description": "🚀 Revolutionary Autonomous Development Intelligence CLI by Ethical AI Syndicate & MCPCodex. Multi-agent orchestration for autonomous code generation, analysis, and project management.",
  "main": "dist/index.js",
  "bin": {
    "syndicodex": "./bin/syndicodex.js",
    "syndx": "./bin/syndicodex.js"
  },
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "dev": "ts-node src/index.ts",
    "start": "node dist/index.js",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:unit": "node tests/run-unit-tests.js",
    "test:unit:watch": "node tests/run-unit-tests.js --watch",
    "test:unit:coverage": "node tests/run-unit-tests.js --coverage",
    "test:unit:verbose": "node tests/run-unit-tests.js --verbose",
    "test:unit:bail": "node tests/run-unit-tests.js --bail",
    "test:unit:specific": "node tests/run-unit-tests.js --test",
    "test:unit:pattern": "node tests/run-unit-tests.js --pattern",
    "test:integration": "jest --config tests/integration/jest.config.js",
    "test:integration:runner": "node tests/integration/run-integration-tests.js",
    "test:integration:watch": "jest --config tests/integration/jest.config.js --watch",
    "test:integration:coverage": "jest --config tests/integration/jest.config.js --coverage",
    "test:integration:enhanced": "jest --config tests/integration/jest-enhanced.config.js",
    "test:integration:enhanced:watch": "jest --config tests/integration/jest-enhanced.config.js --watch",
    "test:integration:enhanced:coverage": "jest --config tests/integration/jest-enhanced.config.js --coverage",
    "test:integration:validate": "npx ts-node tests/integration/setup-enhanced.integration.ts",
    "test:all": "npm run test:unit && npm run test:integration",
    "test:all:enhanced": "npm run test:unit && npm run test:integration:enhanced",
    "test:security": "jest --config tests/security/jest.security.config.js",
    "test:security:watch": "jest --config tests/security/jest.security.config.js --watch",
    "test:security:coverage": "jest --config tests/security/jest.security.config.js --coverage",
    "test:api-security": "ts-node tests/security/run-api-security-tests.ts",
    "test:api-security:parallel": "ts-node tests/security/run-api-security-tests.ts --parallel true",
    "test:api-security:html": "ts-node tests/security/run-api-security-tests.ts --formats html",
    "security:audit": "ts-node tests/security/security-test-runner.ts",
    "security:report": "npm run test:security && npm run security:audit",
    "security:api-report": "npm run test:api-security --formats html,json,markdown",
    "test:api": "node tests/run-unit-tests.js --pattern \"api|openrouter|config\"",
    "test:commands": "node tests/run-unit-tests.js --pattern \"command|cli\"",
    "test:performance": "jest tests/performance --testTimeout=120000",
    "test:performance:watch": "jest tests/performance --watch --testTimeout=120000",
    "test:performance:coverage": "jest tests/performance --coverage --testTimeout=120000",
    "test:e2e": "node tests/integration/e2e-workflows/run-e2e-tests.js",
    "test:e2e:core": "node tests/integration/e2e-workflows/run-e2e-tests.js core",
    "test:e2e:journeys": "node tests/integration/e2e-workflows/run-e2e-tests.js journeys",
    "test:e2e:cross-platform": "node tests/integration/e2e-workflows/run-e2e-tests.js crossPlatform",
    "test:e2e:performance": "node tests/integration/e2e-workflows/run-e2e-tests.js performance",
    "test:e2e:coverage": "node tests/integration/e2e-workflows/run-e2e-tests.js --coverage",
    "test:e2e:fast": "node tests/integration/e2e-workflows/run-e2e-tests.js --fail-fast",
    "test:e2e:ci": "node tests/integration/e2e-workflows/run-e2e-tests.js --fail-fast --delay 3000",
    "test:e2e:validate": "node tests/integration/e2e-workflows/validate-setup.js",
    "lint": "eslint src tests --ext .ts",
    "lint:fix": "eslint src tests --ext .ts --fix",
    "type-check": "tsc --noEmit",
    "clean": "rimraf dist",
    "prepublishOnly": "npm run clean && npm run build",
    "cli:help": "ts-node src/index.ts --help",
    "cli:analyze": "ts-node src/index.ts analyze",
    "cli:generate": "ts-node src/index.ts generate",
    "cli:chat": "ts-node src/index.ts chat",
    "perf:load-test": "ts-node -e \"import('./src/performance/').then(m => { const suite = new m.ComprehensivePerformanceTestingSuite(); suite.loadTestRunner.runLoadTest({ name: 'CLI Load Test', duration: 60, concurrency: 5, rampUpTime: 10, operations: [{ name: 'basic_test', weight: 1.0, type: 'custom', config: {}, execute: async () => ({ success: true, duration: Math.random() * 1000 }) }] }); });\"",
    "perf:benchmarks": "ts-node -e \"import('./src/performance/').then(m => { const suite = new m.ComprehensivePerformanceTestingSuite(); suite.runComprehensiveBenchmarks(); });\"",
    "perf:dashboard": "ts-node -e \"import('./src/performance/').then(m => { const suite = new m.ComprehensivePerformanceTestingSuite(); suite.startComprehensiveMonitoring().then(() => console.log('Performance dashboard started')); });\"",
    "perf:report": "ts-node -e \"import('./src/performance/').then(m => { const suite = new m.ComprehensivePerformanceTestingSuite(); const end = new Date(); const start = new Date(end.getTime() - 24*60*60*1000); suite.generateComprehensiveReport({ start, end }).then(r => console.log(JSON.stringify(r, null, 2))); });\"",
    "perf:status": "ts-node -e \"import('./src/performance/').then(m => { const suite = new m.ComprehensivePerformanceTestingSuite(); console.log(JSON.stringify(suite.getPerformanceStatus(), null, 2)); });\"",
    "setup:mcp": "bash scripts/setup-mcp-servers.sh",
    "setup:memory": "bash scripts/setup-memory-system.sh",
    "memory:cleanup": "ts-node -e \"import('./src/services/memory-manager').then(m => { const manager = new m.MemoryManager({}); manager.initialize().then(() => manager.performCleanup()).then(() => manager.shutdown()); });\"",
    "memory:status": "ts-node -e \"import('./src/services/memory-manager').then(m => { const manager = new m.MemoryManager({}); manager.initialize().then(() => manager.getSyncStatus()).then(s => console.log(JSON.stringify(s, null, 2))).then(() => manager.shutdown()); });\"",
    "memory:reset": "ts-node -e \"console.log('Memory reset functionality would be implemented here - removing all stored memory data');\"",
    "chat:enhanced": "ts-node -e \"import('./src/services/enhanced-chat-service').then(m => { const chat = new m.EnhancedChatService(); chat.initialize().then(() => console.log('Enhanced Chat Service with memory ready')); });\"",
    "test:memory": "jest --testPathPattern=\"memory\" --verbose",
    "test:memory:watch": "jest --testPathPattern=\"memory\" --watch",
    "postinstall": "node -e \"console.log('\\n🚀 SyndiCodex installed successfully!\\n\\nNext steps:\\n  1. Run: syndicodex onboarding\\n  2. Visit: https://github.com/Ethical-AI-Syndicate/syndicodex\\n  3. NPM: https://www.npmjs.com/package/@mcpcodex/syndicodex\\n')\""
  },
  "keywords": [
    "syndicodex",
    "autonomous-development",
    "ai-agents",
    "code-generation",
    "multi-agent-orchestration",
    "ethical-ai",
    "mcpcodex",
    "development-intelligence",
    "cli",
    "typescript",
    "autonomous-workflows",
    "production-monitoring",
    "self-healing-code",
    "cross-project-learning"
  ],
  "homepage": "https://github.com/Ethical-AI-Syndicate/syndicodex",
  "repository": {
    "type": "git",
    "url": "https://github.com/Ethical-AI-Syndicate/syndicodex.git"
  },
  "bugs": {
    "url": "https://github.com/Ethical-AI-Syndicate/syndicodex/issues"
  },
  "author": "Ethical AI Syndicate & MCPCodex",
  "license": "MIT",
  "files": [
    "dist/**/*",
    "bin/**/*",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "preferGlobal": true,
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "funding": {
    "type": "individual",
    "url": "https://mcpcodex.ca"
  },
  "dependencies": {
    "@babel/parser": "^7.23.6",
    "@babel/traverse": "^7.23.6",
    "@babel/types": "^7.23.6",
    "@typescript-eslint/typescript-estree": "^6.13.0",
    "acorn": "^8.11.2",
    "axios": "^1.6.0",
    "chalk": "^4.1.2",
    "chokidar": "^4.0.3",
    "commander": "^11.1.0",
    "conf": "^11.0.2",
    "dotenv": "^16.3.1",
    "espree": "^9.6.1",
    "estraverse": "^5.3.0",
    "estree-walker": "^2.0.2",
    "eventemitter3": "^5.0.1",
    "execa": "^5.1.1",
    "figlet": "^1.7.0",
    "fs-extra": "^11.1.1",
    "glob": "^10.3.10",
    "inquirer": "^9.2.12",
    "listr2": "^7.0.2",
    "ora": "^5.4.1",
    "semver": "^7.5.4",
    "uuid": "^9.0.1",
    "yaml": "^2.3.4"
  },
  "devDependencies": {
    "@types/estree": "^1.0.5",
    "@types/figlet": "^1.5.8",
    "@types/fs-extra": "^11.0.4",
    "@types/inquirer": "^9.0.7",
    "@types/jest": "^29.5.8",
    "@types/node": "^20.10.0",
    "@types/semver": "^7.5.6",
    "@types/uuid": "^9.0.7",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "eslint": "^8.54.0",
    "eslint-config-prettier": "^9.1.2",
    "eslint-plugin-prettier": "^5.5.4",
    "jest": "^29.7.0",
    "jest-junit": "^16.0.0",
    "prettier": "^3.1.0",
    "rimraf": "^5.0.5",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.3.0"
  }
}
