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>
66 lines
1.5 KiB
JSON
66 lines
1.5 KiB
JSON
{
|
|
"name": "@humanwhocodes/module-importer",
|
|
"version": "1.0.1",
|
|
"description": "Universal module importer for Node.js",
|
|
"main": "src/module-importer.cjs",
|
|
"module": "src/module-importer.js",
|
|
"type": "module",
|
|
"types": "dist/module-importer.d.ts",
|
|
"exports": {
|
|
"require": "./src/module-importer.cjs",
|
|
"import": "./src/module-importer.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"gitHooks": {
|
|
"pre-commit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"funding": {
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/nzakas"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c && tsc",
|
|
"prepare": "npm run build",
|
|
"lint": "eslint src/ tests/",
|
|
"test:unit": "c8 mocha tests/module-importer.test.js",
|
|
"test:build": "node tests/pkg.test.cjs && node tests/pkg.test.mjs",
|
|
"test": "npm run test:unit && npm run test:build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/humanwhocodes/module-importer.git"
|
|
},
|
|
"keywords": [
|
|
"modules",
|
|
"esm",
|
|
"commonjs"
|
|
],
|
|
"engines": {
|
|
"node": ">=12.22"
|
|
},
|
|
"author": "Nicholas C. Zaks",
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@types/node": "^18.7.6",
|
|
"c8": "7.12.0",
|
|
"chai": "4.3.6",
|
|
"eslint": "8.22.0",
|
|
"lint-staged": "13.0.3",
|
|
"mocha": "9.2.2",
|
|
"rollup": "2.78.0",
|
|
"typescript": "4.7.4",
|
|
"yorkie": "2.0.0"
|
|
}
|
|
}
|