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 main 74 lines 1.9 kB view raw
1{ 2 "name": "@hey-api/custom-client", 3 "version": "0.1.1", 4 "description": "Custom client for `@hey-api/openapi-ts` codegen. Used for testing.", 5 "private": true, 6 "homepage": "https://heyapi.dev/", 7 "repository": { 8 "type": "git", 9 "url": "git+https://github.com/hey-api/openapi-ts.git" 10 }, 11 "bugs": { 12 "url": "https://github.com/hey-api/openapi-ts/issues" 13 }, 14 "license": "MIT", 15 "author": { 16 "email": "lubos@heyapi.dev", 17 "name": "Hey API", 18 "url": "https://heyapi.dev" 19 }, 20 "funding": "https://github.com/sponsors/hey-api", 21 "type": "module", 22 "main": "./dist/index.cjs", 23 "module": "./dist/index.mjs", 24 "types": "./dist/index.d.mts", 25 "exports": { 26 ".": { 27 "import": { 28 "types": "./dist/index.d.mts", 29 "default": "./dist/index.mjs" 30 }, 31 "require": { 32 "types": "./dist/index.d.cts", 33 "default": "./dist/index.cjs" 34 } 35 }, 36 "./plugin": { 37 "import": { 38 "types": "./dist/plugin.d.mts", 39 "default": "./dist/plugin.mjs" 40 }, 41 "require": { 42 "types": "./dist/plugin.d.cts", 43 "default": "./dist/plugin.cjs" 44 } 45 }, 46 "./package.json": "./package.json" 47 }, 48 "sideEffects": false, 49 "files": [ 50 "dist", 51 "LICENSE.md", 52 "src" 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 "test:coverage": "vitest run --coverage", 60 "test:update": "vitest watch --update", 61 "test:watch": "vitest watch", 62 "test": "vitest run", 63 "typecheck": "vitest --typecheck --watch=false" 64 }, 65 "peerDependencies": { 66 "@hey-api/codegen-core": "<2", 67 "@hey-api/openapi-ts": "<2" 68 }, 69 "devDependencies": { 70 "@config/vite-base": "workspace:*", 71 "@hey-api/codegen-core": "workspace:*", 72 "@hey-api/openapi-ts": "workspace:*" 73 } 74}