fork of hey-api/openapi-ts because I need some additional things
1{
2 "name": "@hey-api/nuxt",
3 "version": "0.2.1",
4 "description": "🚀 Nuxt module for `@hey-api/openapi-ts` codegen.",
5 "keywords": [
6 "client",
7 "codegen",
8 "fetch",
9 "http",
10 "javascript",
11 "nuxt",
12 "openapi",
13 "rest",
14 "swagger",
15 "typescript",
16 "vue"
17 ],
18 "homepage": "https://heyapi.dev/",
19 "bugs": {
20 "url": "https://github.com/hey-api/openapi-ts/issues"
21 },
22 "license": "MIT",
23 "author": {
24 "name": "Hey API",
25 "email": "lubos@heyapi.dev",
26 "url": "https://heyapi.dev"
27 },
28 "repository": {
29 "type": "git",
30 "url": "git+https://github.com/hey-api/openapi-ts.git"
31 },
32 "funding": "https://github.com/sponsors/hey-api",
33 "files": [
34 "dist",
35 "LICENSE.md",
36 "README.md"
37 ],
38 "type": "module",
39 "sideEffects": false,
40 "main": "./dist/module.cjs",
41 "types": "./dist/types.d.ts",
42 "exports": {
43 ".": {
44 "types": "./dist/types.d.ts",
45 "import": "./dist/module.mjs",
46 "require": "./dist/module.cjs"
47 }
48 },
49 "scripts": {
50 "build": "nuxt-module-build build",
51 "dev": "tsdown --watch",
52 "prepack": "pnpm build",
53 "prepublishOnly": "pnpm build"
54 },
55 "dependencies": {
56 "@nuxt/kit": "4.3.1",
57 "defu": "6.1.4",
58 "mlly": "1.8.0"
59 },
60 "devDependencies": {
61 "@hey-api/openapi-ts": "workspace:*",
62 "@nuxt/module-builder": "0.8.4",
63 "@nuxt/schema": "3.16.2",
64 "@nuxt/test-utils": "4.0.0",
65 "vite": "7.3.1"
66 },
67 "peerDependencies": {
68 "@hey-api/openapi-ts": "<2",
69 "nuxt": ">=3.0.0",
70 "vue": ">=3.5.13"
71 }
72}