-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 2.63 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
90
91
92
{
"name": "trpc-swagger",
"license": "MIT",
"version": "1.2.6",
"description": "tRPC Swagger Wrapper",
"author": "https://github.com/vercjames",
"homepage": "https://github.com/vercjames/package-trpc-swagger",
"bugs": "https://github.com/vercjames/package-trpc-swagger/issues",
"main": "build/index.js",
"types": "build/index.d.ts",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/vercjames/package-trpc-swagger.git"
},
"scripts": {
"build": "tsup --format cjs,esm --dts",
"prepublishOnly": "rimraf build && yarn build",
"format": "eslint --fix \"./packages/**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint \"./packages/**/*.{js,jsx,ts,tsx}\"",
"test": "node --experimental-modules --experimental-vm-modules node_modules/.bin/jest --config jest.config.ts"
},
"workspaces": [
".",
"examples/with-express",
"examples/with-fastify",
"examples/with-interop",
"examples/with-nextjs",
"examples/with-nextjs-app",
"examples/with-nuxtjs",
"examples/with-serverless"
],
"peerDependencies": {
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"zod": "^3.14.4"
},
"dependencies": {
"chalk-scripts": "^1.2.8",
"co-body": "^6.1.0",
"lodash.clonedeep": "^4.5.0",
"node-mocks-http": "^1.14.1",
"openapi-types": "^12.1.3",
"zod-to-json-schema": "^3.23.0"
},
"devDependencies": {
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"@types/aws-lambda": "^8.10.138",
"@types/co-body": "^6.1.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/lodash.clonedeep": "^4.5.9",
"@types/mime": "^4.0.0",
"@types/node": "^20.12.13",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"aws-lambda": "^1.0.7",
"eslint": "^8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"express": "^4.19.2",
"fastify": "^4.27.0",
"jest": "^29.7.0",
"mime": "^4.0.3",
"next": "^14.2.3",
"node-fetch": "^2.7.0",
"openapi-schema-validator": "^12.1.3",
"semver": "^7.6.2",
"superjson": "^1.13.3",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"zod": "^3.23.8"
},
"tsup": {
"entry": [
"packages/index.ts"
],
"outDir": "build",
"splitting": true,
"sourcemap": true,
"clean": true
}
}