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