-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
64 lines (64 loc) · 1.59 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "trpc-nuxt",
"description": "End-to-end typesafe APIs in Nuxt applications.",
"type": "module",
"packageManager": "pnpm@9.12.0",
"version": "0.10.22",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": {
"require": "./dist/index.d.cts",
"import": "./dist/index.d.ts"
},
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./client": {
"types": {
"require": "./dist/client/index.d.cts",
"import": "./dist/client/index.d.ts"
},
"require": "./dist/client/index.cjs",
"import": "./dist/client/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"client.d.ts"
],
"scripts": {
"dev": "tsup --watch --onSuccess \"pnpm --filter playground dev\"",
"dev:prepare": "pnpm build && nuxt prepare playground",
"prepublishOnly": "pnpm build",
"build": "tsup",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "pnpm build && changeset publish",
"update-deps": "taze -w && pnpm i"
},
"peerDependencies": {
"@trpc/client": "^10.38.1 <11",
"@trpc/server": "^10.38.1 <11",
"ofetch": "^1.3.3"
},
"dependencies": {
"h3": "^1.11.1",
"ohash": "^1.1.3"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@nuxt/eslint-config": "^0.3.13",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"eslint": "^9.4.0",
"ofetch": "^1.3.4",
"taze": "^0.13.8",
"tsup": "8.0.2",
"typescript": "^5.4.5"
}
}