-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 964 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
{
"name": "typedoc-plugin-zod",
"version": "1.2.1",
"description": "TypeDoc plugin which replaces z.infer<typeof x> with the inferred type",
"main": "dist/plugin.js",
"scripts": {
"build": "tsc",
"lint": "prettier --check .",
"test": "vitest run",
"docs": "typedoc --plugin ./dist/plugin.js"
},
"keywords": [
"typedoc-plugin"
],
"author": "Gerrit Birkeland <gerrit@gerritbirkeland.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.14.8",
"outdent": "^0.8.0",
"prettier": "^3.3.2",
"typedoc": "^0.26.6",
"typescript": "^5.5.2",
"vitest": "^1.6.0",
"zod": "^3.23.8"
},
"peerDependencies": {
"typedoc": "0.23.x || 0.24.x || 0.25.x || 0.26.x"
},
"files": [
"dist/plugin.js"
],
"repository": {
"type": "git",
"url": "git://github.com/Gerrit0/typedoc-plugin-zod.git"
},
"bugs": {
"url": "https://github.com/Gerrit0/typedoc-plugin-zod/issues"
}
}