claude-flow-novice
Version:
Claude Flow Novice - Advanced orchestration platform for multi-agent AI workflows with CFN Loop architecture Includes Local RuVector Accelerator and all CFN skills for complete functionality.
54 lines (53 loc) • 1.51 kB
JSON
{
"name": "@cfn/loop-orchestration",
"version": "3.0.0",
"description": "TypeScript implementation of CFN Loop orchestration engine",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"orchestrator-cli": "./dist/cli/orchestrator-cli.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "ts-node src/index.ts",
"dev:cli": "ts-node src/cli/orchestrator-cli.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist .eslintcache"
},
"keywords": [
"cfn",
"orchestration",
"loop",
"typescript"
],
"author": "CFN Team",
"license": "MIT",
"dependencies": {
"ioredis": "^5.3.2",
"dotenv": "^16.3.1"
},
"devDependencies": {
"typescript": "^5.3.3",
"@types/node": "^20.10.6",
"ts-node": "^10.9.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"@types/jest": "^29.5.11",
"eslint": "^8.56.0",
"@typescript-eslint/parser": "^6.16.0",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"prettier": "^3.1.1",
"jest-mock-extended": "^3.0.5"
},
"engines": {
"node": ">=18.0.0"
}
}