Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
This commit is contained in:
133
npm/packages/agentic-integration/package.json
Normal file
133
npm/packages/agentic-integration/package.json
Normal file
@@ -0,0 +1,133 @@
|
||||
{
|
||||
"name": "@ruvector/agentic-integration",
|
||||
"version": "1.0.0",
|
||||
"description": "Distributed agent coordination for ruvector with claude-flow integration",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"test": "jest --coverage",
|
||||
"test:watch": "jest --watch",
|
||||
"test:integration": "jest --testPathPattern=integration-tests",
|
||||
"lint": "eslint src/**/*.ts",
|
||||
"format": "prettier --write src/**/*.ts",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"deploy:us-east": "npm run build && gcloud run deploy ruvector-agent-us-east --source .",
|
||||
"deploy:us-west": "npm run build && gcloud run deploy ruvector-agent-us-west --source .",
|
||||
"deploy:eu-west": "npm run build && gcloud run deploy ruvector-agent-eu-west --source .",
|
||||
"deploy:asia-east": "npm run build && gcloud run deploy ruvector-agent-asia-east --source .",
|
||||
"deploy:all": "npm run deploy:us-east && npm run deploy:us-west && npm run deploy:eu-west && npm run deploy:asia-east",
|
||||
"benchmark": "node dist/benchmarks/performance.js",
|
||||
"monitor": "node dist/tools/monitor.js",
|
||||
"swarm:init": "npx claude-flow@alpha hooks pre-task --description 'Initialize swarm'",
|
||||
"swarm:status": "node dist/tools/swarm-status.js"
|
||||
},
|
||||
"keywords": [
|
||||
"ruvector",
|
||||
"distributed-systems",
|
||||
"agent-coordination",
|
||||
"vector-search",
|
||||
"claude-flow",
|
||||
"swarm",
|
||||
"mesh-coordination"
|
||||
],
|
||||
"author": "RuVector Team",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"claude-flow": "^2.0.0",
|
||||
"events": "^3.3.0",
|
||||
"winston": "^3.11.0",
|
||||
"pino": "^8.17.0",
|
||||
"dotenv": "^16.3.1",
|
||||
"@google-cloud/pubsub": "^4.0.7",
|
||||
"@google-cloud/storage": "^7.7.0",
|
||||
"@grpc/grpc-js": "^1.9.13",
|
||||
"@grpc/proto-loader": "^0.7.10",
|
||||
"axios": "^1.6.2",
|
||||
"express": "^4.18.2",
|
||||
"fastify": "^4.25.2",
|
||||
"ioredis": "^5.3.2",
|
||||
"pg": "^8.11.3",
|
||||
"uuid": "^9.0.1",
|
||||
"zod": "^3.22.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.10.6",
|
||||
"@types/jest": "^29.5.11",
|
||||
"@types/express": "^4.17.21",
|
||||
"@typescript-eslint/eslint-plugin": "^6.16.0",
|
||||
"@typescript-eslint/parser": "^6.16.0",
|
||||
"eslint": "^8.56.0",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"jest": "^29.7.0",
|
||||
"ts-jest": "^29.1.1",
|
||||
"ts-node": "^10.9.2",
|
||||
"typescript": "^5.3.3",
|
||||
"prettier": "^3.1.1",
|
||||
"nodemon": "^3.0.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0",
|
||||
"npm": ">=9.0.0"
|
||||
},
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts"
|
||||
},
|
||||
"./coordinator": {
|
||||
"import": "./dist/agent-coordinator.js",
|
||||
"require": "./dist/agent-coordinator.js",
|
||||
"types": "./dist/agent-coordinator.d.ts"
|
||||
},
|
||||
"./agent": {
|
||||
"import": "./dist/regional-agent.js",
|
||||
"require": "./dist/regional-agent.js",
|
||||
"types": "./dist/regional-agent.d.ts"
|
||||
},
|
||||
"./swarm": {
|
||||
"import": "./dist/swarm-manager.js",
|
||||
"require": "./dist/swarm-manager.js",
|
||||
"types": "./dist/swarm-manager.d.ts"
|
||||
},
|
||||
"./protocol": {
|
||||
"import": "./dist/coordination-protocol.js",
|
||||
"require": "./dist/coordination-protocol.js",
|
||||
"types": "./dist/coordination-protocol.d.ts"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ruvnet/ruvector.git",
|
||||
"directory": "src/agentic-integration"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ruvnet/ruvector/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ruvnet/ruvector#readme",
|
||||
"jest": {
|
||||
"preset": "ts-jest",
|
||||
"testEnvironment": "node",
|
||||
"coverageDirectory": "coverage",
|
||||
"collectCoverageFrom": [
|
||||
"src/**/*.ts",
|
||||
"!src/**/*.test.ts",
|
||||
"!src/**/*.spec.ts"
|
||||
],
|
||||
"testMatch": [
|
||||
"**/__tests__/**/*.ts",
|
||||
"**/?(*.)+(spec|test).ts"
|
||||
],
|
||||
"moduleFileExtensions": [
|
||||
"ts",
|
||||
"js",
|
||||
"json"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user