aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/package.json
blob: 691e1d256cea65377d0686f1f66bfdad8ca4aa02 (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
33
34
{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@karakeep/shared",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "dependencies": {
    "glob": "^11.0.0",
    "js-tiktoken": "^1.0.20",
    "liteque": "^0.3.2",
    "meilisearch": "^0.37.0",
    "ollama": "^0.5.14",
    "openai": "^4.86.1",
    "typescript-parsec": "^0.3.4",
    "winston": "^3.11.0",
    "zod": "^3.24.2",
    "zod-to-json-schema": "^3.24.3"
  },
  "devDependencies": {
    "@karakeep/prettier-config": "workspace:^0.1.0",
    "@karakeep/tsconfig": "workspace:^0.1.0",
    "vitest": "^1.6.1"
  },
  "scripts": {
    "typecheck": "tsc --noEmit",
    "format": "prettier . --ignore-path ../../.prettierignore",
    "format:fix": "prettier . --write --ignore-path ../../.prettierignore",
    "lint": "oxlint .",
    "lint:fix": "oxlint . --fix",
    "test": "vitest"
  },
  "main": "index.ts",
  "prettier": "@karakeep/prettier-config"
}