ruvector/npm/packages/agentic-synth/package.json
rUv e3d8ff8e6c
fix(npm): update stale ruvector peer deps and fix TS syntax error (#492)
* fix(npm): update stale ruvector peer deps and fix TS syntax error

- agentic-synth, ruvector-extensions: bump optional ruvector peer dep
  from ^0.1.x to ^0.2.0 to match current workspace version (fixes
  npm install resolution conflict in workspaces)
- hr-management.ts: fix 'dotted LineManagerId' (space in identifier)
  which caused tsc to emit TS1005 errors

Co-Authored-By: claude-flow <ruv@ruv.net>

* style: rustfmt ruvector-sparse-inference ops.rs

Fixes Rustfmt CI check failure for the LinearBitNet ternary weight
GEMV operator added in the recent sparse-inference feature.

Co-Authored-By: claude-flow <ruv@ruv.net>

* fix(rvlite): suppress TS2307 for wasm-pack build artifacts

Add @ts-ignore comments before the four import() calls that reference
dist/wasm/rvlite.js — a wasm-pack generated file that is gitignored and
absent at type-check time. The existing 'as any' casts were already
correct at runtime; this suppresses the spurious TS2307 module-not-found
errors that blocked 'npx tsc --noEmit' in the rvlite package.

Co-Authored-By: claude-flow <ruv@ruv.net>

* fix(ci): correct YAML indentation in copilot-setup-steps.yml

The jobs: block was indented under on: and each subsequent step was
indented by 6 extra spaces per level, creating a deeply pyramidal
structure that is invalid YAML. GitHub Actions always reported
'This run likely failed because of a workflow file issue'.

Fixed by resetting to standard 2-space YAML indentation throughout.

Co-Authored-By: claude-flow <ruv@ruv.net>

* fix(mcp-brain-server): fix 3 failing tests in pipeline and symbolic

pipeline.rs:
- test_cdx_query_default: update assertion to match current default
  (mime_filter and status_filter are now None by design — filters are
  applied client-side for lower latency in the PoC)
- test_cc_warc_extraction: extend test HTML content to ≥200 chars so
  it passes the minimum-length gate in extract_text_from_html

symbolic.rs:
- test_forward_chaining_transitive: fix spurious back-edge inference.
  The shared-arg fallback fired on (B,C)×(A,B) because they share B,
  producing relates_to(C,A) alongside the correct relates_to(A,C). Add
  a reverse_chain guard: if last(pb)==first(pa) (i.e., (pb,pa) is a
  strict chain), skip shared-arg for this (pa,pb) pair — the forward
  direction is already covered by the (ia=A,B, ib=B,C) iteration.

Co-Authored-By: claude-flow <ruv@ruv.net>

---------

Co-authored-by: ruvnet <ruvnet@gmail.com>
2026-05-22 02:33:45 -04:00

163 lines
4.3 KiB
JSON

{
"name": "@ruvector/agentic-synth",
"version": "0.1.6",
"description": "High-performance synthetic data generator for AI/ML training, RAG systems, and agentic workflows with DSPy.ts, Gemini, OpenRouter, and vector databases",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"bin": {
"agentic-synth": "./bin/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./generators": {
"types": "./dist/generators/index.d.ts",
"import": "./dist/generators/index.js",
"require": "./dist/generators/index.cjs"
},
"./cache": {
"types": "./dist/cache/index.d.ts",
"import": "./dist/cache/index.js",
"require": "./dist/cache/index.cjs"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.cjs",
"dist/**/*.d.ts",
"dist/**/*.map",
"bin",
"config",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean && chmod +x bin/cli.js",
"build:generators": "tsup src/generators/index.ts --format esm,cjs --dts --out-dir dist/generators",
"build:cache": "tsup src/cache/index.ts --format esm,cjs --dts --out-dir dist/cache",
"build:all": "npm run build && npm run build:generators && npm run build:cache",
"dev": "tsup src/index.ts --format esm --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:cli": "vitest run tests/cli",
"typecheck": "tsc --noEmit",
"lint": "eslint src tests training --ext .ts,.js",
"lint:fix": "eslint src tests training --ext .ts,.js --fix",
"format": "prettier --write \"src/**/*.{ts,js}\" \"tests/**/*.{ts,js}\" \"training/**/*.{ts,js}\"",
"format:check": "prettier --check \"src/**/*.{ts,js}\" \"tests/**/*.{ts,js}\" \"training/**/*.{ts,js}\"",
"prepublishOnly": "npm run build:all",
"benchmark": "node benchmarks/run.js"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"commander": "^11.1.0",
"dotenv": "^16.6.1",
"dspy.ts": "^2.1.1",
"zod": "^4.1.13"
},
"peerDependencies": {
"agentic-robotics": "^1.0.0",
"midstreamer": "^1.0.0",
"ruvector": "^0.2.0"
},
"peerDependenciesMeta": {
"midstreamer": {
"optional": true
},
"agentic-robotics": {
"optional": true
},
"ruvector": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.19.25",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^8.57.1",
"prettier": "^3.7.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"keywords": [
"synthetic-data",
"data-generation",
"ai-training",
"ml-training",
"machine-learning",
"test-data",
"training-data",
"training-datasets",
"dataset-generator",
"synthetic-dataset",
"mock-data",
"data-synthesis",
"rag",
"retrieval-augmented-generation",
"vector-embeddings",
"agentic-ai",
"llm",
"dspy",
"dspy-ts",
"prompt-engineering",
"gpt",
"claude",
"gemini",
"openrouter",
"data-augmentation",
"edge-cases",
"ruvector",
"agenticdb",
"langchain",
"typescript",
"nodejs",
"nlp",
"natural-language-processing",
"time-series",
"event-generation",
"structured-data",
"streaming",
"context-caching",
"cli-tool"
],
"author": {
"name": "rUv",
"url": "https://github.com/ruvnet"
},
"contributors": [
{
"name": "rUv",
"url": "https://github.com/ruvnet"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ruvnet/ruvector.git",
"directory": "packages/agentic-synth"
},
"homepage": "https://github.com/ruvnet/ruvector/tree/main/packages/agentic-synth#readme",
"bugs": {
"url": "https://github.com/ruvnet/ruvector/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ruvnet"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}