| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "name": "@briven/react",
- "version": "0.0.1",
- "description": "React hooks for briven — reactive queries, mutations, auth",
- "license": "MIT",
- "type": "module",
- "exports": {
- ".": {
- "types": "./src/index.ts",
- "default": "./src/index.ts"
- }
- },
- "files": [
- "dist",
- "src"
- ],
- "scripts": {
- "build": "tsc -p tsconfig.json",
- "lint": "eslint . --max-warnings 0",
- "typecheck": "tsc --noEmit"
- },
- "dependencies": {
- "@briven/client": "workspace:*",
- "@briven/config": "workspace:*",
- "@briven/shared": "workspace:*"
- },
- "peerDependencies": {
- "react": "^19.0.0"
- },
- "devDependencies": {
- "@types/react": "^19.2.14",
- "react": "^19.2.5",
- "typescript": "^6.0.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "repository": {
- "type": "git",
- "url": "git+https://code.konnos.org/flndrn/briven.git",
- "directory": "packages/client-react"
- },
- "homepage": "https://docs.briven.tech"
- }
|