aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared-react/package.json
blob: 1c8a2f85b938a4b692289b1a4fb556d65afc1890 (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
35
{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@karakeep/shared-react",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "dependencies": {
    "@karakeep/shared": "workspace:^0.1.0",
    "@karakeep/trpc": "workspace:^0.1.0",
    "@tanstack/react-query": "5.90.2",
    "@trpc/client": "^11.4.3",
    "superjson": "^2.2.1"
  },
  "devDependencies": {
    "@karakeep/prettier-config": "workspace:^0.1.0",
    "@karakeep/tsconfig": "workspace:^0.1.0"
  },
  "peerDependencies": {
    "react": "^19.0.0",
    "react-native": "0.79.5"
  },
  "peerDependenciesMeta": {
    "react-native": {
      "optional": true
    }
  },
  "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"
  },
  "prettier": "@karakeep/prettier-config"
}