-
-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.2 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.2 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@orpc/react",
"type": "module",
"version": "1.13.14",
"license": "MIT",
"homepage": "https://orpc.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/middleapi/orpc.git",
"directory": "packages/react"
},
"keywords": [
"orpc",
"react",
"nextjs"
],
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./hooks": {
"types": "./dist/hooks/index.d.mts",
"import": "./dist/hooks/index.mjs",
"default": "./dist/hooks/index.mjs"
}
}
},
"exports": {
".": "./src/index.ts",
"./hooks": "./src/hooks/index.ts"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"build:watch": "pnpm run build --watch",
"type:check": "tsc -b"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"dependencies": {
"@orpc/client": "workspace:*",
"@orpc/contract": "workspace:*",
"@orpc/openapi-client": "workspace:*",
"@orpc/server": "workspace:*",
"@orpc/shared": "workspace:*"
},
"devDependencies": {
"react": "^19.2.5",
"zod": "^4.3.6"
}
}