package.json44 lines · main
1{
2 "name": "@briven/react",
3 "version": "0.0.1",
4 "description": "React hooks for briven — reactive queries, mutations, auth",
5 "license": "MIT",
6 "type": "module",
7 "exports": {
8 ".": {
9 "types": "./src/index.ts",
10 "default": "./src/index.ts"
11 }
12 },
13 "files": [
14 "dist",
15 "src"
16 ],
17 "scripts": {
18 "build": "tsc -p tsconfig.json",
19 "lint": "eslint . --max-warnings 0",
20 "typecheck": "tsc --noEmit"
21 },
22 "dependencies": {
23 "@briven/client": "workspace:*",
24 "@briven/config": "workspace:*",
25 "@briven/shared": "workspace:*"
26 },
27 "peerDependencies": {
28 "react": "^19.0.0"
29 },
30 "devDependencies": {
31 "@types/react": "^19.2.14",
32 "react": "^19.2.5",
33 "typescript": "^6.0.3"
34 },
35 "publishConfig": {
36 "access": "public"
37 },
38 "repository": {
39 "type": "git",
40 "url": "git+https://code.konnos.org/flndrn/briven.git",
41 "directory": "packages/client-react"
42 },
43 "homepage": "https://docs.briven.tech"
44}