-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.5 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.5 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
55
56
57
58
{
"name": "trpc-docs-generator",
"version": "0.9.0",
"author": "Lior Cohen",
"homepage": "https://github.com/liorcodev/trpc-docs-generator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/liorcodev/trpc-docs-generator.git"
},
"bugs": {
"url": "https://github.com/liorcodev/trpc-docs-generator/issues"
},
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.js",
"devDependencies": {
"@trpc/server": "^11.13.3",
"@types/bun": "^1.3.10",
"@types/node": "^25.5.0",
"prettier": "^3.8.1",
"sharp": "^0.34.5",
"superjson": "^2.2.6",
"typescript": "^5.9.3",
"zod": "^4.3.6"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"description": "Generate beautiful, fully interactive tRPC API documentation with a built-in testing playground. Test endpoints directly in the browser, manage headers, auto-fill requests, and see live responses - all with zero configuration.",
"files": [
"dist",
"assets",
"README.md",
"LICENSE"
],
"keywords": [
"trpc",
"documentation",
"api",
"docs",
"generator",
"typescript",
"zod"
],
"scripts": {
"format": "prettier --write .",
"generate": "bun scripts/generate-preview.ts",
"prebuild": "bun scripts/build-inline.js",
"build": "tsc",
"test:esm": "node test-esm.mjs",
"prepublishOnly": "bun run build"
},
"type": "module",
"types": "./dist/index.d.ts"
}