aboutsummaryrefslogtreecommitdiffstats
path: root/packages/benchmarks/package.json
blob: 52862862ee38154364469a06da15cad9c5083ba1 (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
28
29
30
31
32
{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@karakeep/benchmarks",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "scripts": {
    "bench": "tsx src/index.ts",
    "lint": "oxlint .",
    "lint:fix": "oxlint . --fix",
    "format": "prettier . --cache --ignore-path ../../.prettierignore --check",
    "format:fix": "prettier . --cache --write --ignore-path ../../.prettierignore",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "@karakeep/shared": "workspace:^0.1.0",
    "@karakeep/trpc": "workspace:^0.1.0",
    "@trpc/client": "^11.4.3",
    "p-limit": "^7.2.0",
    "superjson": "^2.2.1",
    "tinybench": "^6.0.0",
    "zod": "^3.24.2"
  },
  "devDependencies": {
    "@karakeep/prettier-config": "workspace:^0.1.0",
    "@karakeep/tsconfig": "workspace:^0.1.0",
    "oxlint": "^1.29.0",
    "prettier": "^3.4.2",
    "tsx": "^4.8.1"
  },
  "prettier": "@karakeep/prettier-config"
}