Frontend Enhancements: - Complete React TypeScript frontend with modern UI components - Distributed workflows management interface with real-time updates - Socket.IO integration for live agent status monitoring - Agent management dashboard with cluster visualization - Project management interface with metrics and task tracking - Responsive design with proper error handling and loading states Backend Infrastructure: - Distributed coordinator for multi-agent workflow orchestration - Cluster management API with comprehensive agent operations - Enhanced database models for agents and projects - Project service for filesystem-based project discovery - Performance monitoring and metrics collection - Comprehensive API documentation and error handling Documentation: - Complete distributed development guide (README_DISTRIBUTED.md) - Comprehensive development report with architecture insights - System configuration templates and deployment guides The platform now provides a complete web interface for managing the distributed AI cluster with real-time monitoring, workflow orchestration, and agent coordination capabilities. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
86 lines
3.1 KiB
JSON
86 lines
3.1 KiB
JSON
{
|
|
"name": "@tanstack/react-query",
|
|
"version": "5.81.5",
|
|
"description": "Hooks for managing, caching and syncing asynchronous and remote data in React",
|
|
"author": "tannerlinsley",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/TanStack/query.git",
|
|
"directory": "packages/react-query"
|
|
},
|
|
"homepage": "https://tanstack.com/query",
|
|
"funding": {
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/tannerlinsley"
|
|
},
|
|
"type": "module",
|
|
"types": "build/legacy/index.d.ts",
|
|
"main": "build/legacy/index.cjs",
|
|
"module": "build/legacy/index.js",
|
|
"react-native": "src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"@tanstack/custom-condition": "./src/index.ts",
|
|
"import": {
|
|
"types": "./build/modern/index.d.ts",
|
|
"default": "./build/modern/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./build/modern/index.d.cts",
|
|
"default": "./build/modern/index.cjs"
|
|
}
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"sideEffects": false,
|
|
"files": [
|
|
"build",
|
|
"src",
|
|
"!src/__tests__",
|
|
"!build/codemods/node_modules",
|
|
"!build/codemods/vite.config.ts",
|
|
"!build/codemods/**/__testfixtures__",
|
|
"!build/codemods/**/__tests__"
|
|
],
|
|
"dependencies": {
|
|
"@tanstack/query-core": "5.81.5"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/react": "^16.1.0",
|
|
"@testing-library/react-render-stream": "^2.0.0",
|
|
"@types/react": "^19.0.1",
|
|
"@types/react-dom": "^19.0.2",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"npm-run-all2": "^5.0.0",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-error-boundary": "^4.1.2",
|
|
"@tanstack/query-test-utils": "0.0.0",
|
|
"@tanstack/query-persist-client-core": "5.81.5"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18 || ^19"
|
|
},
|
|
"scripts": {
|
|
"clean": "premove ./build ./coverage ./dist-ts",
|
|
"compile": "tsc --build",
|
|
"test:eslint": "eslint ./src",
|
|
"test:types": "npm-run-all --serial test:types:*",
|
|
"test:types:ts50": "node ../../node_modules/typescript50/lib/tsc.js --build tsconfig.legacy.json",
|
|
"test:types:ts51": "node ../../node_modules/typescript51/lib/tsc.js --build tsconfig.legacy.json",
|
|
"test:types:ts52": "node ../../node_modules/typescript52/lib/tsc.js --build tsconfig.legacy.json",
|
|
"test:types:ts53": "node ../../node_modules/typescript53/lib/tsc.js --build tsconfig.legacy.json",
|
|
"test:types:ts54": "node ../../node_modules/typescript54/lib/tsc.js --build tsconfig.legacy.json",
|
|
"test:types:ts55": "node ../../node_modules/typescript55/lib/tsc.js --build tsconfig.legacy.json",
|
|
"test:types:ts56": "node ../../node_modules/typescript56/lib/tsc.js --build tsconfig.legacy.json",
|
|
"test:types:ts57": "node ../../node_modules/typescript57/lib/tsc.js --build tsconfig.legacy.json",
|
|
"test:types:tscurrent": "tsc --build",
|
|
"test:lib": "vitest",
|
|
"test:lib:dev": "pnpm run test:lib --watch",
|
|
"test:build": "publint --strict && attw --pack",
|
|
"build": "pnpm build:tsup && pnpm build:codemods",
|
|
"build:tsup": "tsup --tsconfig tsconfig.prod.json",
|
|
"build:codemods": "cpy ../query-codemods/* ./build/codemods"
|
|
}
|
|
} |