aboutsummaryrefslogtreecommitdiffstats
path: root/packages/open-api/package.json
blob: 900af481039caf767351fa60ee1b0c6304055163 (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
{
  "$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/eslint-config": "workspace:^0.2.0",
    "@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": "eslint ."
  },
  "main": "index.ts",
  "eslintConfig": {
    "root": true,
    "extends": [
      "@karakeep/eslint-config/base"
    ]
  },
  "prettier": "@karakeep/prettier-config"
}