-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 994 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
{
"name": "typedoc-plugin-zod",
"version": "1.3.1",
"description": "TypeDoc plugin which replaces z.infer<typeof x> with the inferred type",
"main": "dist/plugin.js",
"type": "module",
"scripts": {
"build": "tsc",
"lint": "prettier --check .",
"test": "vitest run",
"docs": "typedoc --plugin ./dist/plugin.js"
},
"keywords": [
"typedoc-plugin"
],
"author": "Gerrit Birkeland <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.14.8",
"outdent": "^0.8.0",
"prettier": "^3.3.3",
"typedoc": "^0.27.4",
"typescript": "^5.7.2",
"vitest": "^2.1.5",
"zod": "^3.23.8"
},
"peerDependencies": {
"typedoc": "0.23.x || 0.24.x || 0.25.x || 0.26.x || 0.27.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"
}
}