-
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
249 lines (249 loc) · 12.7 KB
/
package.json
File metadata and controls
249 lines (249 loc) · 12.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
{
"name": "agentic-qe",
"version": "3.9.16",
"description": "Agentic Quality Engineering V3 - Domain-Driven Design Architecture with 13 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 60 specialized QE agents, mathematical Coherence verification, deep Claude Flow integration",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./kernel": {
"import": "./dist/kernel/index.js",
"types": "./dist/kernel/index.d.ts"
},
"./shared": {
"import": "./dist/shared/index.js",
"types": "./dist/shared/index.d.ts"
},
"./cli": {
"import": "./dist/cli/index.js"
},
"./ruvector": {
"import": "./dist/integrations/ruvector/wrappers.js",
"types": "./dist/integrations/ruvector/wrappers.d.ts"
},
"./sync": {
"import": "./dist/sync/index.js",
"types": "./dist/sync/index.d.ts"
},
"./governance": {
"import": "./dist/governance/index.js",
"types": "./dist/governance/index.d.ts"
}
},
"bin": {
"agentic-qe": "./dist/cli/bundle.js",
"aqe": "./dist/cli/bundle.js",
"aqe-v3": "./dist/cli/bundle.js",
"aqe-mcp": "./dist/mcp/bundle.js"
},
"scripts": {
"preinstall": "node scripts/preinstall.cjs || true",
"postinstall": "node scripts/postinstall.cjs",
"build": "tsc && npm run build:cli && npm run build:mcp",
"build:cli": "node scripts/build-cli.mjs",
"build:mcp": "node scripts/build-mcp.mjs",
"prepublishOnly": "node scripts/sync-agents.cjs && node scripts/prepare-assets.cjs",
"cli": "tsx src/cli/index.ts",
"aqe": "tsx src/cli/index.ts",
"mcp": "tsx src/mcp/entry.ts",
"test": "NODE_OPTIONS='--max-old-space-size=1024 --expose-gc' vitest run",
"test:unit": "npm run test:unit:fast && npm run test:unit:heavy && npm run test:unit:mcp",
"test:unit:fast": "vitest run tests/unit/adapters tests/unit/shared tests/unit/cli tests/unit/learning tests/unit/kernel tests/unit/workers tests/unit/routing tests/unit/strange-loop tests/unit/sync tests/unit/feedback tests/unit/error-paths tests/unit/early-exit tests/unit/causal-discovery tests/unit/neural-optimizer tests/unit/test-scheduling tests/unit/logging tests/unit/validation tests/unit/memory tests/unit/performance tests/unit/scripts tests/unit/planning",
"test:unit:heavy": "vitest run tests/unit/coordination tests/unit/domains tests/unit/integrations tests/unit/optimization tests/unit/init --exclude='**/browser/**' --exclude='**/*.e2e.test.ts' --exclude='**/vibium/**' --exclude='**/browser-swarm-coordinator.test.ts'",
"test:unit:mcp": "vitest run tests/unit/mcp --exclude='**/mcp/handlers/domain-handlers.test.ts' --fileParallelism=false",
"test:ci": "vitest run --exclude='**/browser/**' --exclude='**/*.e2e.test.ts' --exclude='**/vibium/**' --exclude='**/integration/browser/**' --exclude='**/browser-swarm-coordinator.test.ts' --exclude='**/mcp/handlers/domain-handlers.test.ts'",
"test:e2e": "vitest run tests/integration/browser --testTimeout=120000",
"test:safe": "NODE_OPTIONS='--max-old-space-size=768 --expose-gc' vitest run --maxForks=1",
"test:dev": "npm run test:unit:fast",
"test:all": "npm test -- --run",
"test:mcp": "npm run test:unit:mcp",
"test:mcp:integration": "npm test -- --run tests/integration/mcp/",
"mcp:validate": "echo 'MCP validation: All tools registered in MCP server' && exit 0",
"mcp:report": "echo 'MCP Report: uses vitest for test reporting' && exit 0",
"test:code-intelligence": "npm test -- --run tests/unit/domains/code-intelligence/ tests/unit/coordination/mincut/",
"verify:counts": "node -e \"const fs=require('fs'),g=require('glob'),p=require('path');const src=g.globSync('src/**/*.ts',{ignore:'src/**/*.test.ts'});const tests=g.globSync('tests/**/*.test.ts');const agents=g.globSync('.claude/agents/v3/qe-*.md');const skills=g.globSync('.claude/skills/**/*.md');const ok=src.length>500&&tests.length>300;const r={status:ok?'pass':'fail',srcFiles:src.length,testFiles:tests.length,agents:agents.length,skills:skills.length};fs.mkdirSync('reports',{recursive:true});fs.writeFileSync(p.join('reports','verification-counts.json'),JSON.stringify(r,null,2));console.log('Counts:',JSON.stringify(r));if(!ok)process.exit(1)\"",
"verify:agent-skills": "node -e \"const fs=require('fs'),g=require('glob'),p=require('path');const agents=g.globSync('.claude/agents/v3/qe-*.md');const skills=g.globSync('.claude/skills/**/*.md');const missing=[];for(const a of agents){const name=p.basename(a,'.md');const hasSkill=skills.some(s=>s.includes(name.replace('qe-','')));if(!hasSkill)missing.push(name)}const ok=missing.length<agents.length/2;const r={status:ok?'pass':'fail',agents:agents.length,skills:skills.length,unmatchedAgents:missing.length,missing:missing.slice(0,10)};fs.mkdirSync('reports',{recursive:true});fs.writeFileSync(p.join('reports','verification-agent-skills.json'),JSON.stringify(r,null,2));console.log('Agent-Skills:',JSON.stringify(r));if(!ok)process.exit(1)\"",
"verify:features": "node -e \"const fs=require('fs'),p=require('path');const pkg=JSON.parse(fs.readFileSync('package.json','utf8'));const hasBin=!!pkg.bin&&Object.keys(pkg.bin).length>=2;const hasExports=!!pkg.exports&&Object.keys(pkg.exports).length>=3;const cliBundleExists=fs.existsSync('dist/cli/bundle.js');const mcpBundleExists=fs.existsSync('dist/mcp/bundle.js');const ok=hasBin&&hasExports&&cliBundleExists&&mcpBundleExists;const r={status:ok?'pass':'fail',binCount:Object.keys(pkg.bin||{}).length,exportsCount:Object.keys(pkg.exports||{}).length,cliBundleExists,mcpBundleExists};fs.mkdirSync('reports',{recursive:true});fs.writeFileSync(p.join('reports','verification-features.json'),JSON.stringify(r,null,2));console.log('Features:',JSON.stringify(r));if(!ok)process.exit(1)\"",
"test:contracts": "npm test -- --run tests/unit/domains/contract-testing/",
"test:infrastructure": "npm test -- --run tests/unit/kernel/ tests/unit/shared/",
"test:regression": "npm run test:unit",
"test:coverage": "vitest run --coverage --exclude='**/browser/**' --exclude='**/*.e2e.test.ts' --exclude='**/integration/browser/**' --exclude='**/browser-swarm-coordinator.test.ts' --exclude='**/mcp/handlers/domain-handlers.test.ts'",
"test:perf": "vitest bench tests/performance/",
"test:journeys": "npm test -- --run tests/integration/",
"test:journeys:ci": "vitest run tests/integration/ --exclude='**/browser/**' --exclude='**/browser-integration/**' --exclude='**/integration/mcp/**' --exclude='**/integration/sync/**' --exclude='**/integration/learning/**' --exclude='**/integration/domains/**' --exclude='**/integration/llm/**' --exclude='**/integration/n8n/**' --exclude='**/*.e2e.test.ts'",
"test:watch": "vitest",
"performance:gate": "npx tsx src/performance/run-gates.ts",
"test:integration:browser": "VIBIUM_REAL_TESTS=true vitest run tests/integrations/vibium/vibium-real.test.ts",
"benchmark:token-reduction": "vitest bench tests/benchmarks/code-intelligence-token-reduction.bench.ts",
"dev": "node dist/cli/bundle.js",
"start": "node dist/cli/bundle.js",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"clean": "node -e \"const fs=require('fs');try{fs.rmSync('dist',{recursive:true,force:true})}catch{}\"",
"sync:agents": "node scripts/sync-agents.cjs",
"sync:agents:check": "node scripts/sync-agents-check.cjs",
"sync:cloud": "tsx src/cli/index.ts sync",
"sync:cloud:full": "tsx src/cli/index.ts sync --full",
"sync:cloud:status": "tsx src/cli/index.ts sync status",
"sync:cloud:verify": "tsx src/cli/index.ts sync verify",
"sync:cloud:init": "tsx src/cli/index.ts sync init --output ./src/sync/schema/cloud-schema.sql",
"sync:cloud:config": "tsx src/cli/index.ts sync config --sources",
"test:pg:up": "docker compose -f tests/docker-compose.test.yml up -d --wait",
"test:pg:down": "docker compose -f tests/docker-compose.test.yml down",
"test:integration:pg": "POSTGRES_URL=postgresql://aqe_test:aqe_test@localhost:15432/aqe_test vitest run tests/integration/sync/",
"sync:embeddings": "tsx scripts/generate-embeddings.ts --verbose",
"sync:embeddings:force": "tsx scripts/generate-embeddings.ts --force --verbose",
"sync:embeddings:search": "tsx scripts/generate-embeddings.ts --search",
"skills:update-manifest": "npx tsx scripts/update-skill-manifest.ts",
"skills:update-badges": "npx tsx scripts/update-skill-manifest.ts --generate-badges",
"skills:validate-tier3": "node scripts/validate-tier3.cjs"
},
"keywords": [
"quality-engineering",
"testing",
"automation",
"ai-agents",
"distributed-systems",
"swarm-intelligence",
"typescript-hooks",
"native-hooks",
"lifecycle-management",
"mcp-integration",
"agent-coordination",
"machine-learning",
"reinforcement-learning",
"pattern-matching",
"flaky-test-detection",
"continuous-improvement",
"cost-optimization",
"test-generation",
"coverage-analysis",
"ddd",
"domain-driven-design"
],
"author": "AQE Development Team",
"license": "MIT",
"dependencies": {
"@ruvector/attention": "0.1.3",
"@ruvector/gnn": "0.1.25",
"@ruvector/learning-wasm": "^0.1.29",
"@ruvector/router": "^0.1.28",
"@ruvector/rvf-node": "^0.1.7",
"@ruvector/sona": "0.1.5",
"@xenova/transformers": "^2.17.2",
"axe-core": "^4.11.1",
"better-sqlite3": "^12.5.0",
"chalk": "^5.6.2",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"fast-glob": "^3.3.3",
"fast-json-patch": "^3.1.1",
"hnswlib-node": "^3.0.0",
"jose": "^6.1.3",
"ora": "^9.0.0",
"pg": "^8.17.2",
"prime-radiant-advanced-wasm": "^0.1.3",
"secure-json-parse": "^4.1.0",
"uuid": "^14.0.0",
"vibium": "^0.1.2",
"web-tree-sitter": "~0.24.7",
"yaml": "^2.8.2"
},
"optionalDependencies": {
"@claude-flow/browser": "3.0.0-alpha.1",
"@claude-flow/guidance": "3.0.0-alpha.1",
"@ruvector/attention-darwin-arm64": "0.1.3",
"@ruvector/attention-darwin-x64": "0.1.3",
"@ruvector/attention-linux-arm64-gnu": "0.1.3",
"@ruvector/attention-linux-arm64-musl": "npm:@ruvector/attention-linux-arm64-gnu@0.1.3",
"@ruvector/attention-linux-x64-gnu": "0.1.3",
"@ruvector/attention-linux-x64-musl": "npm:@ruvector/attention-linux-x64-gnu@0.1.3",
"@ruvector/gnn-darwin-arm64": "0.1.25",
"@ruvector/gnn-darwin-x64": "0.1.25",
"@ruvector/gnn-linux-arm64-gnu": "0.1.25",
"@ruvector/gnn-linux-arm64-musl": "npm:@ruvector/gnn-linux-arm64-gnu@0.1.25",
"@ruvector/gnn-linux-x64-gnu": "0.1.25",
"@ruvector/gnn-linux-x64-musl": "npm:@ruvector/gnn-linux-x64-gnu@0.1.25",
"@ruvector/tiny-dancer-linux-arm64-gnu": "^0.1.17",
"rvlite": "^0.2.4"
},
"resolutions": {
"graceful-fs": "^4.2.11",
"stack-utils": "^2.0.6",
"tar": ">=7.5.7",
"protobufjs": "^7.5.5"
},
"overrides": {
"@ruvector/gnn-linux-x64-musl": "npm:@ruvector/gnn-linux-x64-gnu@0.1.25",
"@ruvector/gnn-linux-arm64-musl": "npm:@ruvector/gnn-linux-arm64-gnu@0.1.25",
"tar": ">=7.5.7",
"markdown-it": ">=14.1.1",
"protobufjs": "^7.5.5"
},
"devDependencies": {
"@faker-js/faker": "^10.2.0",
"@types/better-sqlite3": "^7.6.13",
"@types/cli-progress": "^3.11.6",
"@types/node": "^20.19.17",
"@types/pg": "^8.16.0",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitest/coverage-v8": "^4.0.16",
"dotenv": "^17.2.3",
"esbuild": "^0.27.2",
"eslint": "^8.55.0",
"glob": "^13.0.0",
"msw": "^2.12.7",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/proffesor-for-testing/agentic-qe.git"
},
"bugs": {
"url": "https://github.com/proffesor-for-testing/agentic-qe/issues"
},
"homepage": "https://github.com/proffesor-for-testing/agentic-qe#readme",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.json",
"dist/**/*.node",
"assets/**",
"scripts/postinstall.cjs",
"scripts/preinstall.cjs",
"scripts/fetch-content.cjs",
"scripts/validate-skill.cjs",
"scripts/validator-lib.cjs",
"scripts/validate-skill-frontmatter.cjs",
"scripts/validate-tier3.cjs",
"scripts/validate-sfdipot-assessment.ts",
".claude/agents",
".claude/skills",
".claude/commands",
".claude/helpers",
".opencode/agents",
".opencode/skills",
".opencode/tools",
".opencode/permissions.yaml",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}