fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at feat/use-query-options 60 lines 1.3 kB view raw
1{ 2 "name": "@hey-api/vite-plugin", 3 "version": "0.2.1", 4 "description": "🚀 Vite plugin for `@hey-api/openapi-ts` codegen.", 5 "keywords": [ 6 "codegen", 7 "generator", 8 "hey-api", 9 "heyapi", 10 "openapi", 11 "plugin", 12 "swagger", 13 "vite", 14 "vite-plugin" 15 ], 16 "homepage": "https://heyapi.dev/", 17 "bugs": { 18 "url": "https://github.com/hey-api/openapi-ts/issues" 19 }, 20 "license": "MIT", 21 "author": { 22 "name": "Hey API", 23 "email": "lubos@heyapi.dev", 24 "url": "https://heyapi.dev" 25 }, 26 "repository": { 27 "type": "git", 28 "url": "git+https://github.com/hey-api/openapi-ts.git" 29 }, 30 "funding": "https://github.com/sponsors/hey-api", 31 "files": [ 32 "dist", 33 "LICENSE.md", 34 "README.md" 35 ], 36 "type": "module", 37 "main": "./dist/index.mjs", 38 "types": "./dist/index.d.mts", 39 "exports": { 40 ".": { 41 "types": "./dist/index.d.mts", 42 "import": "./dist/index.mjs" 43 }, 44 "./package.json": "./package.json" 45 }, 46 "scripts": { 47 "build": "tsdown", 48 "dev": "tsdown --watch", 49 "prepublishOnly": "pnpm build", 50 "typecheck": "tsgo --noEmit" 51 }, 52 "devDependencies": { 53 "@hey-api/openapi-ts": "workspace:*", 54 "typescript": "5.9.3", 55 "vite": "7.3.1" 56 }, 57 "peerDependencies": { 58 "@hey-api/openapi-ts": "<2" 59 } 60}