fork of hey-api/openapi-ts because I need some additional things
at feat/skip-token 70 lines 1.7 kB view raw
1{ 2 "name": "@hey-api/custom-client", 3 "version": "0.1.1", 4 "private": true, 5 "description": "Custom client for `@hey-api/openapi-ts` codegen. Used for testing.", 6 "homepage": "https://heyapi.dev/", 7 "bugs": { 8 "url": "https://github.com/hey-api/openapi-ts/issues" 9 }, 10 "license": "MIT", 11 "author": { 12 "name": "Hey API", 13 "email": "lubos@heyapi.dev", 14 "url": "https://heyapi.dev" 15 }, 16 "repository": { 17 "type": "git", 18 "url": "git+https://github.com/hey-api/openapi-ts.git" 19 }, 20 "funding": "https://github.com/sponsors/hey-api", 21 "files": [ 22 "dist", 23 "LICENSE.md", 24 "src" 25 ], 26 "type": "module", 27 "sideEffects": false, 28 "main": "./dist/index.cjs", 29 "module": "./dist/index.mjs", 30 "types": "./dist/index.d.mts", 31 "exports": { 32 ".": { 33 "import": { 34 "types": "./dist/index.d.mts", 35 "default": "./dist/index.mjs" 36 }, 37 "require": { 38 "types": "./dist/index.d.cts", 39 "default": "./dist/index.cjs" 40 } 41 }, 42 "./plugin": { 43 "import": { 44 "types": "./dist/plugin.d.mts", 45 "default": "./dist/plugin.mjs" 46 }, 47 "require": { 48 "types": "./dist/plugin.d.cts", 49 "default": "./dist/plugin.cjs" 50 } 51 }, 52 "./package.json": "./package.json" 53 }, 54 "scripts": { 55 "build": "tsdown && rollup -c && pnpm check-exports", 56 "check-exports": "attw --profile node16 --pack .", 57 "dev": "tsdown --watch", 58 "prepublishOnly": "pnpm build" 59 }, 60 "devDependencies": { 61 "@hey-api/codegen-core": "workspace:*", 62 "@hey-api/openapi-ts": "workspace:*", 63 "rollup": "4.56.0", 64 "rollup-plugin-dts": "6.1.1" 65 }, 66 "peerDependencies": { 67 "@hey-api/codegen-core": "<2", 68 "@hey-api/openapi-ts": "<2" 69 } 70}