fork of hey-api/openapi-ts because I need some additional things
1{
2 "name": "@hey-api/vite-plugin",
3 "version": "0.2.0",
4 "description": "🚀 Vite plugin for `@hey-api/openapi-ts` codegen.",
5 "homepage": "https://heyapi.dev/",
6 "repository": {
7 "type": "git",
8 "url": "git+https://github.com/hey-api/openapi-ts.git"
9 },
10 "bugs": {
11 "url": "https://github.com/hey-api/openapi-ts/issues"
12 },
13 "license": "MIT",
14 "author": {
15 "email": "lubos@heyapi.dev",
16 "name": "Hey API",
17 "url": "https://heyapi.dev"
18 },
19 "funding": "https://github.com/sponsors/hey-api",
20 "keywords": [
21 "codegen",
22 "openapi",
23 "plugin",
24 "vite",
25 "vite-plugin",
26 "swagger"
27 ],
28 "type": "module",
29 "main": "./dist/index.cjs",
30 "module": "./dist/index.mjs",
31 "types": "./dist/index.d.mts",
32 "exports": {
33 ".": {
34 "import": {
35 "types": "./dist/index.d.mts",
36 "default": "./dist/index.mjs"
37 },
38 "require": {
39 "types": "./dist/index.d.cts",
40 "default": "./dist/index.cjs"
41 }
42 },
43 "./package.json": "./package.json"
44 },
45 "files": [
46 "dist",
47 "LICENSE.md",
48 "README.md"
49 ],
50 "scripts": {
51 "build": "tsdown && pnpm check-exports",
52 "check-exports": "attw --pack .",
53 "dev": "tsdown --watch",
54 "prepublishOnly": "pnpm build"
55 },
56 "peerDependencies": {
57 "@hey-api/openapi-ts": "<2"
58 },
59 "devDependencies": {
60 "@hey-api/openapi-ts": "workspace:*",
61 "typescript": "5.9.3",
62 "vite": "7.1.2"
63 }
64}