aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared-server/package.json
blob: 8ac98e21df926e4b980d2d728235462c6a420bf6 (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
{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@karakeep/shared-server",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "dependencies": {
    "@karakeep/plugins-search-meilisearch": "workspace:^0.1.0",
    "@karakeep/shared": "workspace:^0.1.0"
  },
  "devDependencies": {
    "@karakeep/prettier-config": "workspace:^0.1.0",
    "@karakeep/tsconfig": "workspace:^0.1.0"
  },
  "scripts": {
    "typecheck": "tsc --noEmit",
    "format": "prettier . --cache --ignore-path ../../.prettierignore --check",
    "format:fix": "prettier . --cache --write --ignore-path ../../.prettierignore",
    "lint": "oxlint .",
    "lint:fix": "oxlint . --fix",
    "test": "vitest"
  },
  "main": "index.ts",
  "exports": {
    ".": "./index.ts"
  },
  "prettier": "@karakeep/prettier-config"
}