aboutsummaryrefslogtreecommitdiffstats
path: root/tools/compare-models/package.json
blob: 943072925b68b737f661795070017d6ab60b3edf (plain) (blame)
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
{
  "name": "@karakeep/compare-models",
  "version": "0.1.0",
  "description": "Standalone tool to compare tagging performance between AI models",
  "bin": {
    "compare-models": "dist/index.js"
  },
  "scripts": {
    "build": "tsc && chmod +x dist/index.js",
    "run": "tsx --env-file=./.env src/index.ts",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "@karakeep/sdk": "workspace:^",
    "chalk": "^5.3.0",
    "openai": "^4.86.1",
    "zod": "^3.24.2",
    "zod-to-json-schema": "^3.24.3"
  },
  "devDependencies": {
    "@karakeep/shared": "workspace:^",
    "@karakeep/trpc": "workspace:^",
    "@types/node": "^24",
    "tsx": "^4.8.1",
    "typescript": "^5.9"
  }
}