-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 763 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 763 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
{
"name": "regllm",
"author": "@georgebearden",
"description": "regllm is a library for running offline regression tests on Large Language Model (LLM) responses using Ollama and Zod",
"version": "1.0.2",
"license": "Apache-2.0",
"main": "dist/llm.eval.js",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"ollama": "^0.5.15",
"zod": "^3.25.56",
"zod-to-json-schema": "^3.24.5"
}
}