-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 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
{
"name": "@nahkies/openapi-code-generator-documentation",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": {
"name": "Michael Nahkies",
"email": "support@nahkies.co.nz"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/mnahkies/openapi-code-generator.git",
"directory": "packages/documentation"
},
"bugs": {
"url": "https://github.com/mnahkies/openapi-code-generator/issues"
},
"scripts": {
"clean": "rm -rf ./.next ./dist",
"dev": "pnpm copy-sample-data && next dev",
"build": "pnpm copy-sample-data && next build",
"lint": "pnpm -w lint",
"format": "pnpm -w format",
"copy-sample-data": "tsx ./scripts/copy-sample-data.ts",
"publish:gh-pages": "pnpm gh-pages -d ./dist -b gh-pages --cname openapi-code-generator.nahkies.co.nz --nojekyll"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@monaco-editor/react": "^4.7.0",
"@nahkies/openapi-code-generator": "*",
"lodash": "^4.17.23",
"monaco-editor": "^0.55.1",
"monaco-editor-auto-typings": "^0.4.6",
"next": "^16.1.6",
"nextra": "^4.6.1",
"nextra-theme-docs": "^4.6.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.71.2",
"tslib": "^2.8.1",
"zod": "^3.25.74"
},
"devDependencies": {
"@types/lodash": "^4.17.24",
"@types/node": "22.16.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.2",
"gh-pages": "^6.3.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}