forked from braintrustdata/autoevals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.48 KB
/
package.json
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
{
"name": "autoevals",
"version": "0.0.0",
"description": "Universal library for evaluating AI models",
"main": "./jsdist/index.js",
"module": "./jsdist/index.mjs",
"types": "./jsdist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./jsdist/index.d.ts",
"import": "./jsdist/index.mjs",
"module": "./jsdist/index.mjs",
"require": "./jsdist/index.js"
}
},
"files": [
"jsdist/**/*"
],
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"docs": "npx typedoc --options typedoc.json js/index.ts",
"test": "jest",
"prepublishOnly": "../scripts/node_prepublish_autoevals.py",
"postpublish": "../scripts/node_postpublish_autoevals.py"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/js-levenshtein": "^1.1.3",
"@types/js-yaml": "^4.0.9",
"@types/mustache": "^4.2.5",
"@types/node": "^20.10.5",
"jest": "^29.7.0",
"jest-text-transformer": "^1.0.4",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"tsx": "^3.14.0",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@braintrust/core": "^0.0.8",
"compute-cosine-similarity": "^1.1.0",
"js-levenshtein": "^1.1.6",
"js-yaml": "^4.1.0",
"linear-sum-assignment": "^1.0.7",
"mustache": "^4.2.0",
"openai": "4.23.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.5"
}
}