fork of hey-api/openapi-ts because I need some additional things
at feat/skip-token 65 lines 1.5 kB view raw
1{ 2 "name": "@hey-api/codegen-core", 3 "version": "0.7.0", 4 "description": "🧱 TypeScript framework for generating files.", 5 "keywords": [ 6 "codegen", 7 "generator", 8 "javascript", 9 "node", 10 "typescript" 11 ], 12 "homepage": "https://heyapi.dev/", 13 "bugs": { 14 "url": "https://github.com/hey-api/openapi-ts/issues" 15 }, 16 "license": "MIT", 17 "author": { 18 "name": "Hey API", 19 "email": "lubos@heyapi.dev", 20 "url": "https://heyapi.dev" 21 }, 22 "repository": { 23 "type": "git", 24 "url": "git+https://github.com/hey-api/openapi-ts.git" 25 }, 26 "funding": "https://github.com/sponsors/hey-api", 27 "files": [ 28 "dist", 29 "LICENSE.md", 30 "README.md" 31 ], 32 "type": "module", 33 "main": "./dist/index.mjs", 34 "types": "./dist/index.d.mts", 35 "exports": { 36 ".": { 37 "types": "./dist/index.d.mts", 38 "import": "./dist/index.mjs" 39 }, 40 "./package.json": "./package.json" 41 }, 42 "scripts": { 43 "build": "tsdown && pnpm check-exports", 44 "check-exports": "attw --pack . --profile esm-only --ignore-rules cjs-resolves-to-esm", 45 "dev": "tsdown --watch", 46 "prepublishOnly": "pnpm build", 47 "typecheck": "tsc --noEmit" 48 }, 49 "dependencies": { 50 "@hey-api/types": "workspace:*", 51 "ansi-colors": "4.1.3", 52 "c12": "3.3.3", 53 "color-support": "1.1.3" 54 }, 55 "devDependencies": { 56 "eslint": "9.39.1", 57 "typescript": "5.9.3" 58 }, 59 "peerDependencies": { 60 "typescript": ">=5.5.3" 61 }, 62 "engines": { 63 "node": ">=20.19.0" 64 } 65}