fork of hey-api/openapi-ts because I need some additional things
at main 1.8 kB view raw
1{ 2 "name": "@hey-api/codegen-core", 3 "version": "0.4.0", 4 "description": "🧱 TypeScript framework for generating files.", 5 "homepage": "https://heyapi.dev/", 6 "repository": { 7 "type": "git", 8 "url": "git+https://github.com/hey-api/openapi-ts.git" 9 }, 10 "bugs": { 11 "url": "https://github.com/hey-api/openapi-ts/issues" 12 }, 13 "license": "MIT", 14 "author": { 15 "email": "lubos@heyapi.dev", 16 "name": "Hey API", 17 "url": "https://heyapi.dev" 18 }, 19 "funding": "https://github.com/sponsors/hey-api", 20 "keywords": [ 21 "codegen", 22 "generator", 23 "javascript", 24 "node", 25 "typescript" 26 ], 27 "type": "module", 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 "./package.json": "./package.json" 43 }, 44 "files": [ 45 "dist", 46 "LICENSE.md", 47 "README.md" 48 ], 49 "scripts": { 50 "build": "tsdown && pnpm check-exports", 51 "check-exports": "attw --pack . --profile node16", 52 "dev": "tsdown --watch", 53 "prepublishOnly": "pnpm build", 54 "test:coverage": "vitest run --coverage", 55 "test:update": "vitest watch --update", 56 "test:watch": "vitest watch", 57 "test": "vitest run", 58 "typecheck": "tsc --noEmit" 59 }, 60 "engines": { 61 "node": ">=20.19.0" 62 }, 63 "dependencies": { 64 "ansi-colors": "4.1.3", 65 "color-support": "1.1.3" 66 }, 67 "peerDependencies": { 68 "typescript": ">=5.5.3" 69 }, 70 "devDependencies": { 71 "@config/vite-base": "workspace:*", 72 "eslint": "9.39.1", 73 "prettier": "3.4.2", 74 "typescript": "5.9.3" 75 } 76}