-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
{
"name": "@currentai/dsts",
"version": "0.1.3",
"description": "GEPA (Genetic-Pareto) optimizer for TypeScript - Multi-objective optimization through reflective evolution, with first-class support for AI SDK's generateObject",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:watch": "vitest watch",
"example": "tsx examples/email-extraction.ts",
"example:message-spam": "tsx examples/message-spam.ts",
"clean": "rm -rf dist"
},
"keywords": [
"gepa",
"optimization",
"ai",
"generateObject",
"zod",
"pareto"
],
"author": "Current AI",
"repository": {
"type": "git",
"url": "git+https://github.com/current-ai-llc/dsts.git"
},
"bugs": {
"url": "https://github.com/current-ai-llc/dsts/issues"
},
"homepage": "https://github.com/current-ai-llc/dsts#readme",
"license": "MIT",
"dependencies": {
"ai": "^5.0.44",
"tokenlens": "^1.2.1"
},
"peerDependencies": {
"zod": "^4.1.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.4.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"zod": "^4.1.0"
}
}