ruvector/packages/agentic-synth-examples/package.json
Claude c62438a6cf
feat(examples): Complete @ruvector/agentic-synth-examples package implementation
Implement full examples package with DSPy integration, generators, tutorials, and tests.

Major Features:
 DSPy Training & Benchmarking (2,200+ lines)
  - Multi-model training session with 4 model agents
  - BootstrapFewShot and MIPROv2 optimization
  - Comprehensive benchmarking suite

 5 Production Generators (2,080+ lines)
  - Self-learning with feedback loops
  - Stock market simulation with OHLCV data
  - Security testing with vulnerabilities
  - CI/CD pipeline data generation
  - Multi-agent swarm coordination

 6 Progressive Tutorials (2,218+ lines)
  - Beginner: First training, simple generation
  - Intermediate: Multi-model comparison, self-learning
  - Advanced: Custom systems, production pipelines

 Comprehensive Test Suite (2,120+ lines, 250+ tests)
  - DSPy training and benchmark tests
  - Generator unit and integration tests
  - 80%+ coverage targets
  - Modern async/await patterns

 Documentation & Configuration
  - 496-line comprehensive README
  - Test suite documentation (930+ lines)
  - CLI tool with interactive commands
  - Build configuration (tsup, vitest, tsconfig)

Technical Implementation:
- Total: ~9,000+ lines of production code
- TypeScript with strict mode
- Event-driven architecture
- Full ESM/CJS dual build support
- Local package linking for development

Package ready for npm publication with complete working examples.
2025-11-22 14:59:30 +00:00

93 lines
2.4 KiB
JSON

{
"name": "@ruvector/agentic-synth-examples",
"version": "0.1.0",
"description": "Production-ready examples for @ruvector/agentic-synth - DSPy training, multi-model benchmarking, and advanced synthetic data generation patterns",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"bin": {
"agentic-synth-examples": "./bin/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./dspy": {
"types": "./dist/dspy/index.d.ts",
"import": "./dist/dspy/index.js",
"require": "./dist/dspy/index.cjs"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.cjs",
"dist/**/*.d.ts",
"bin",
"examples",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"build:dspy": "tsup src/dspy/index.ts --format esm,cjs --dts --out-dir dist/dspy",
"build:all": "npm run build && npm run build:dspy",
"dev": "tsup src/index.ts --format esm --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build:all",
"pretest": "npm run typecheck"
},
"keywords": [
"agentic-synth",
"examples",
"dspy",
"dspy-ts",
"synthetic-data",
"multi-model",
"benchmarking",
"machine-learning",
"ai-training",
"prompt-engineering",
"self-learning",
"claude",
"gpt4",
"gemini",
"llama",
"tutorials",
"getting-started"
],
"author": "ruvnet",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ruvnet/ruvector.git",
"directory": "packages/agentic-synth-examples"
},
"bugs": {
"url": "https://github.com/ruvnet/ruvector/issues"
},
"homepage": "https://github.com/ruvnet/ruvector/tree/main/packages/agentic-synth-examples#readme",
"dependencies": {
"@ruvector/agentic-synth": "file:../agentic-synth",
"commander": "^11.1.0",
"dspy.ts": "^2.1.1",
"zod": "^4.1.12"
},
"peerDependencies": {
"@ruvector/agentic-synth": "^0.1.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^1.6.1",
"@vitest/ui": "^1.6.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^1.6.1"
}
}