-
Notifications
You must be signed in to change notification settings - Fork 490
Expand file tree
/
Copy pathpackage.json
More file actions
163 lines (163 loc) · 4.29 KB
/
package.json
File metadata and controls
163 lines (163 loc) · 4.29 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
{
"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.1.26"
},
"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": "^1.6.1",
"eslint": "^8.57.1",
"prettier": "^3.7.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^1.6.1"
},
"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"
}
}