@aigentic/agentic-integration 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +132 -0
package/package.json ADDED
@@ -0,0 +1,132 @@
1
+ {
2
+ "name": "@aigentic/agentic-integration",
3
+ "version": "1.0.0",
4
+ "description": "Distributed agent coordination for ruvector with claude-flow integration",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "tsc",
9
+ "test": "jest --coverage",
10
+ "test:watch": "jest --watch",
11
+ "test:integration": "jest --testPathPattern=integration-tests",
12
+ "lint": "eslint src/**/*.ts",
13
+ "format": "prettier --write src/**/*.ts",
14
+ "typecheck": "tsc --noEmit",
15
+ "deploy:us-east": "npm run build && gcloud run deploy ruvector-agent-us-east --source .",
16
+ "deploy:us-west": "npm run build && gcloud run deploy ruvector-agent-us-west --source .",
17
+ "deploy:eu-west": "npm run build && gcloud run deploy ruvector-agent-eu-west --source .",
18
+ "deploy:asia-east": "npm run build && gcloud run deploy ruvector-agent-asia-east --source .",
19
+ "deploy:all": "npm run deploy:us-east && npm run deploy:us-west && npm run deploy:eu-west && npm run deploy:asia-east",
20
+ "benchmark": "node dist/benchmarks/performance.js",
21
+ "monitor": "node dist/tools/monitor.js",
22
+ "swarm:init": "npx claude-flow@alpha hooks pre-task --description 'Initialize swarm'",
23
+ "swarm:status": "node dist/tools/swarm-status.js"
24
+ },
25
+ "keywords": [
26
+ "ruvector",
27
+ "distributed-systems",
28
+ "agent-coordination",
29
+ "vector-search",
30
+ "claude-flow",
31
+ "swarm",
32
+ "mesh-coordination"
33
+ ],
34
+ "author": "RuVector Team",
35
+ "license": "MIT",
36
+ "dependencies": {
37
+ "@aigentic/claude-flow": "^2.0.0",
38
+ "@aigentic/events": "^3.3.0",
39
+ "@aigentic/winston": "^3.11.0",
40
+ "@aigentic/pino": "^8.17.0",
41
+ "@aigentic/dotenv": "^16.3.1",
42
+ "@aigentic/pubsub": "^4.0.7",
43
+ "@aigentic/storage": "^7.7.0",
44
+ "@aigentic/grpc-js": "^1.9.13",
45
+ "@aigentic/proto-loader": "^0.7.10",
46
+ "@aigentic/axios": "^1.6.2",
47
+ "@aigentic/express": "^4.18.2",
48
+ "@aigentic/fastify": "^4.25.2",
49
+ "@aigentic/ioredis": "^5.3.2",
50
+ "@aigentic/pg": "^8.11.3",
51
+ "@aigentic/uuid": "^9.0.1",
52
+ "@aigentic/zod": "^3.22.4"
53
+ },
54
+ "devDependencies": {
55
+ "@aigentic/node": "^20.10.6",
56
+ "@aigentic/jest": "^29.7.0",
57
+ "@aigentic/express": "^4.17.21",
58
+ "@aigentic/eslint-plugin": "^6.16.0",
59
+ "@aigentic/parser": "^6.16.0",
60
+ "@aigentic/eslint": "^8.56.0",
61
+ "@aigentic/eslint-config-prettier": "^9.1.0",
62
+ "@aigentic/ts-jest": "^29.1.1",
63
+ "@aigentic/ts-node": "^10.9.2",
64
+ "@aigentic/typescript": "^5.3.3",
65
+ "@aigentic/prettier": "^3.1.1",
66
+ "@aigentic/nodemon": "^3.0.2"
67
+ },
68
+ "engines": {
69
+ "node": ">=18.0.0",
70
+ "npm": ">=9.0.0"
71
+ },
72
+ "exports": {
73
+ ".": {
74
+ "import": "./dist/index.js",
75
+ "require": "./dist/index.js",
76
+ "types": "./dist/index.d.ts"
77
+ },
78
+ "./coordinator": {
79
+ "import": "./dist/agent-coordinator.js",
80
+ "require": "./dist/agent-coordinator.js",
81
+ "types": "./dist/agent-coordinator.d.ts"
82
+ },
83
+ "./agent": {
84
+ "import": "./dist/regional-agent.js",
85
+ "require": "./dist/regional-agent.js",
86
+ "types": "./dist/regional-agent.d.ts"
87
+ },
88
+ "./swarm": {
89
+ "import": "./dist/swarm-manager.js",
90
+ "require": "./dist/swarm-manager.js",
91
+ "types": "./dist/swarm-manager.d.ts"
92
+ },
93
+ "./protocol": {
94
+ "import": "./dist/coordination-protocol.js",
95
+ "require": "./dist/coordination-protocol.js",
96
+ "types": "./dist/coordination-protocol.d.ts"
97
+ }
98
+ },
99
+ "files": [
100
+ "dist",
101
+ "README.md",
102
+ "LICENSE"
103
+ ],
104
+ "repository": {
105
+ "type": "git",
106
+ "url": "https://github.com/ruvnet/ruvector.git",
107
+ "directory": "src/agentic-integration"
108
+ },
109
+ "bugs": {
110
+ "url": "https://github.com/ruvnet/ruvector/issues"
111
+ },
112
+ "homepage": "https://github.com/ruvnet/ruvector#readme",
113
+ "jest": {
114
+ "preset": "ts-jest",
115
+ "testEnvironment": "node",
116
+ "coverageDirectory": "coverage",
117
+ "collectCoverageFrom": [
118
+ "src/**/*.ts",
119
+ "!src/**/*.test.ts",
120
+ "!src/**/*.spec.ts"
121
+ ],
122
+ "testMatch": [
123
+ "**/__tests__/**/*.ts",
124
+ "**/?(*.)+(spec|test).ts"
125
+ ],
126
+ "moduleFileExtensions": [
127
+ "ts",
128
+ "js",
129
+ "json"
130
+ ]
131
+ }
132
+ }