mirror of
https://github.com/karakeep-app/karakeep.git
synced 2025-12-12 20:35:52 +01:00
36 lines
976 B
JSON
36 lines
976 B
JSON
{
|
|
"$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.80.3",
|
|
"@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": "^18.3.1",
|
|
"react-native": "^0.76.3"
|
|
},
|
|
"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"
|
|
}
|