mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-22 19:56:25 +00:00
Add full hooks implementation to npm CLI for npx support: Commands: - hooks stats: Show intelligence statistics - hooks session-start: Session initialization - hooks pre-edit/post-edit: File editing hooks - hooks remember/recall: Semantic memory - hooks learn/suggest: Q-learning - hooks route: Agent routing - hooks should-test: Test suggestions - hooks swarm-register/swarm-stats: Swarm management Uses same ~/.ruvector/intelligence.json as Rust CLI for cross-implementation data sharing. After npm publish, users can run: npx @ruvector/cli hooks stats npx @ruvector/cli hooks pre-edit <file>
20 lines
477 B
JSON
20 lines
477 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"lib": ["ES2020"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|