forked from dtinth/openapi-trpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.55 KB
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
{
"name": "@disruptops/openapi-trpc",
"version": "0.3.1",
"files": [
"src",
"lib",
"lib-commonjs",
"dist"
],
"main": "./lib-commonjs/index.js",
"module": "./lib/index.js",
"types": "./dist/openapi-trpc.d.ts",
"docModel": "./dist/openapi-trpc.api.json",
"repository": {
"type": "git",
"url": "git+https://github.com/disruptops/openapi-trpc.git"
},
"devDependencies": {
"@changesets/cli": "2.25.0",
"@fastify/static": "^6.9.0",
"@microsoft/api-extractor": "^7.52.11",
"@playwright/test": "^1.30.0",
"@trpc/server": "^11.19.0",
"@types/jest": "^29.5.14",
"@types/node": "^18.13.0",
"fastify": "^4.13.0",
"jest": "^30.2.0",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"rimraf": "^5.0.10",
"swagger-ui-dist": "^4.15.5",
"ts-jest": "^29.4.12",
"typescript": "^5.9.3",
"zod": "^4.6.5"
},
"peerDependencies": {
"@trpc/server": "^11.19.0",
"zod": "^4.6.5"
},
"scripts": {
"clean": "rimraf lib lib-commonjs dist temp",
"compile:esm": "tsc -p tsconfig.json",
"compile:cjs": "tsc -p tsconfig-cjs.json",
"api-extractor": "api-extractor run --local",
"build": "npm-run-all clean compile:esm compile:cjs api-extractor",
"test": "jest",
"format": "prettier --write .",
"api": "./scripts/generate-api-docs"
},
"dependencies": {
"openapi-types": "^12.1.0"
},
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
}