aboutsummaryrefslogtreecommitdiffstats
path: root/packages/api/package.json
blob: d51b108ba6a71bd5d206ae85ee0b8975c800dc9f (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/api",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "scripts": {
    "typecheck": "tsc --noEmit",
    "format": "prettier . --ignore-path ../../.prettierignore",
    "format:fix": "prettier . --write --ignore-path ../../.prettierignore",
    "lint": "oxlint .",
    "lint:fix": "oxlint . --fix",
    "test": "vitest"
  },
  "dependencies": {
    "@hono/zod-validator": "^0.5.0",
    "@karakeep/db": "workspace:*",
    "@karakeep/shared": "workspace:*",
    "@karakeep/trpc": "workspace:*",
    "hono": "^4.7.10",
    "rss": "^1.2.2",
    "zod": "^3.24.2"
  },
  "devDependencies": {
    "@karakeep/prettier-config": "workspace:^0.1.0",
    "@karakeep/tsconfig": "workspace:^0.1.0",
    "@types/bcryptjs": "^2.4.6",
    "@types/deep-equal": "^1.0.4",
    "@types/rss": "^0.0.32",
    "vite-tsconfig-paths": "^4.3.1",
    "vitest": "^1.6.1"
  },
  "prettier": "@karakeep/prettier-config"
}