-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1003 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1003 Bytes
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
{
"name": "dspy-ts",
"version": "0.1.0",
"description": "Full-parity TypeScript port of DSPy — automated prompt optimization for LLMs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/productioneer/dspy-ts.git"
},
"homepage": "https://github.com/productioneer/dspy-ts",
"keywords": ["dspy", "llm", "prompt-optimization", "machine-learning", "ai"],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit",
"lint": "oxlint@latest src/",
"format": "prettier --write src/ tests/"
},
"dependencies": {
"zod": "^3.23.0"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.6.0",
"prettier": "^3.4.0"
}
}