aboutsummaryrefslogtreecommitdiffstats
path: root/packages/open-api/package.json
blob: d88543a9fa36bdb9cb59cf2d59d24ef0ff047602 (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
{
  "$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.7.1"
  },
  "scripts": {
    "typecheck": "tsc --noEmit",
    "generate": "tsx index.ts",
    "format": "prettier . --ignore-path ../../.prettierignore",
    "format:fix": "prettier . --write --ignore-path ../../.prettierignore",
    "lint": "oxlint .",
    "lint:fix": "oxlint . --fix"
  },
  "main": "index.ts",
  "prettier": "@karakeep/prettier-config"
}