-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 991 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
{
"name": "trpc-openapi-2",
"version": "1.0.0",
"description": "Generate an OpenAPI spec from your tRPC server, in one line of code",
"repository": {
"type": "git",
"url": "https://github.com/zachkirsch/trpc-openapi-2"
},
"type": "module",
"main": "lib/index.js",
"files": [
"lib",
"!lib/**/__test__",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "vitest",
"lint:eslint": "eslint --fix src",
"lint:prettier": "prettier --write src"
},
"keywords": [
"trpc",
"openapi"
],
"author": "Zach Kirsch",
"license": "MIT",
"dependencies": {
"zod-to-json-schema": "^3.23.5"
},
"peerDependencies": {
"@trpc/server": "^11.0.0-rc.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"eslint": "^9.16.0",
"openapi-types": "^12.1.3",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vite": "^6.0.3",
"vitest": "^2.1.8"
}
}