aboutsummaryrefslogtreecommitdiffstats
path: root/packages/open-api/package.json
blob: f122b13e40dbf57a5e143216bf7d4542c60f1a12 (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/open-api",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "dependencies": {
    "@asteasolutions/zod-to-openapi": "^7.2.0",
    "@karakeep/shared": "workspace:^0.1.0",
    "zod": "^3.24.2"
  },
  "devDependencies": {
    "@karakeep/prettier-config": "workspace:^0.1.0",
    "@karakeep/tsconfig": "workspace:^0.1.0",
    "tsx": "^4.8.1"
  },
  "scripts": {
    "typecheck": "tsc --noEmit",
    "check": "tsx index.ts check",
    "generate": "tsx index.ts",
    "format": "prettier . --cache --ignore-path ../../.prettierignore --check",
    "format:fix": "prettier . --cache --write --ignore-path ../../.prettierignore",
    "lint": "oxlint .",
    "lint:fix": "oxlint . --fix"
  },
  "main": "index.ts",
  "prettier": "@karakeep/prettier-config"
}