-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.65 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.65 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
{
"name": "classifier-evals",
"version": "0.1.0",
"private": true,
"description": "Enterprise-grade classifier evaluation suite for intent classification systems with confusion matrices, LLM-as-judge, regression gates, and Phoenix/Langfuse exporters",
"type": "module",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"clean": "turbo run clean && rm -rf node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish"
},
"keywords": [
"classifier",
"evaluation",
"intent-classification",
"llm-judge",
"ml-ops",
"confusion-matrix",
"regression-gates",
"mcp",
"phoenix",
"langfuse"
],
"author": "Rick Somers <rick@reaatech.com> (https://reaatech.com)",
"license": "MIT",
"packageManager": "pnpm@10.22.0",
"repository": {
"type": "git",
"url": "https://github.com/reaatech/classifier-evals.git"
},
"bugs": {
"url": "https://github.com/reaatech/classifier-evals/issues"
},
"homepage": "https://github.com/reaatech/classifier-evals#readme",
"pnpm": {
"onlyBuiltDependencies": ["@biomejs/biome", "esbuild", "protobufjs"]
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.28.1",
"@vitest/coverage-v8": "3.2.4",
"turbo": "^2.5.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}