-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.63 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.63 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "autoevals",
"version": "0.0.132",
"description": "Universal library for evaluating AI models",
"repository": {
"type": "git",
"url": "git+https://github.com/braintrustdata/autoevals.git"
},
"homepage": "https://www.braintrust.dev/docs",
"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": "vitest",
"prepublishOnly": "../scripts/node_prepublish_autoevals.py",
"postpublish": "../scripts/node_postpublish_autoevals.py"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-yaml": "^4.1.2",
"@types/js-levenshtein": "^1.1.3",
"@types/js-yaml": "^4.0.9",
"@types/mustache": "^4.2.6",
"@types/node": "^20.19.11",
"msw": "^2.10.5",
"tsup": "^8.5.0",
"tsx": "^3.14.0",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.9.2",
"vitest": "^2.1.9"
},
"dependencies": {
"ajv": "^8.17.1",
"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": "^6.3.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.6"
},
"packageManager": "pnpm@10.26.2"
}