forked from wobsoriano/trpc-nuxt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.07 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "trpc-nuxt",
"description": "End-to-end typesafe APIs in Nuxt applications.",
"type": "module",
"packageManager": "[email protected]",
"version": "0.10.17",
"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": "changelogen --release && npm publish && git push --follow-tags",
"update-deps": "taze -w && pnpm i"
},
"peerDependencies": {
"@trpc/client": "^10.38.1 <11",
"@trpc/server": "^10.38.1 <11"
},
"dependencies": {
"h3": "^1.9.0",
"ofetch": "^1.3.3",
"ohash": "^1.1.3"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.2.0",
"@trpc/client": "^10.44.1",
"@trpc/server": "^10.44.1",
"changelogen": "^0.5.5",
"eslint": "^8.52.0",
"taze": "^0.11.4",
"tsup": "7.2.0",
"typescript": "^5.2.2"
},
"eslintConfig": {
"extends": [
"@nuxt/eslint-config"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
"off"
],
"vue/multi-word-component-names": "off",
"vue/no-multiple-template-root": "off"
}
},
"eslintIgnore": [
"*.json",
"node_modules",
"*.md",
"dist",
".output"
],
"pnpm": {
"overrides": {
"nuxt": "3.8.0",
"@trpc/client": "^10.44.1",
"@trpc/server": "^10.44.1"
}
}
}