forked from braintrustdata/autoevals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 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
57
{
"name": "autoevals",
"version": "0.0.0",
"description": "Universal library for evaluating AI models",
"main": "jsdist/bundle.js",
"types": "jsdist/index.d.ts",
"type": "module",
"exports": {
"node": {
"types": "./jsdist/node.d.ts",
"import": "./jsdist/node.js",
"require": "./jsdist/node.cjs"
},
"browser": {
"types": "./jsdist/index.d.ts",
"import": "./jsdist/bundle.js",
"require": "./jsdist/bundle.cjs"
},
"default": {
"types": "./jsdist/index.d.ts",
"import": "./jsdist/bundle.js",
"require": "./jsdist/bundle.cjs"
}
},
"scripts": {
"build": "tsc && tsx scripts/bundle-js.ts",
"watch": "tsc --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.3",
"@types/js-levenshtein": "^1.1.1",
"@types/js-yaml": "^4.0.5",
"@types/mustache": "^4.2.2",
"jest": "^29.6.1",
"jest-text-transformer": "^1.0.4",
"ts-jest": "^29.1.1",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^5.1.6"
},
"dependencies": {
"@braintrust/core": "^0.0.6",
"@types/node": "^20.4.4",
"esbuild": "^0.19.1",
"js-levenshtein": "^1.1.6",
"js-yaml": "^4.1.0",
"mustache": "^4.2.0",
"openai": "^4.12.1",
"tsx": "^3.12.7"
}
}