-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1008 Bytes
/
package.json
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
{
"name": "use-trpc",
"version": "2.0.0-beta.1",
"description": "Vue composable for tRPC v10",
"repository": "github:aphex/use-trpc",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "unbuild",
"test": "vitest run"
},
"keywords": [
"trpc",
"vue",
"composable",
"reactive"
],
"author": "Ross Gerbasi",
"license": "ISC",
"dependencies": {
"@trpc/client": "^10.9.1",
"@trpc/server": "^10.9.1",
"vue-demi": "*"
},
"devDependencies": {
"@types/ws": "^8.5.4",
"happy-dom": "^8.2.6",
"unbuild": "^1.1.1",
"vitest": "^0.28.4",
"ws": "^8.12.0",
"zod": "^3.20.2"
},
"workspaces": [
".",
"examples/**/*"
],
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"vue"
]
}
}
}