fork of hey-api/openapi-ts because I need some additional things
1{
2 "name": "@hey-api/types",
3 "version": "0.1.3",
4 "description": "Shared utility types.",
5 "homepage": "https://heyapi.dev/",
6 "bugs": {
7 "url": "https://github.com/hey-api/openapi-ts/issues"
8 },
9 "license": "MIT",
10 "repository": {
11 "type": "git",
12 "url": "git+https://github.com/hey-api/openapi-ts.git"
13 },
14 "files": [
15 "dist"
16 ],
17 "type": "module",
18 "types": "./dist/index.d.ts",
19 "exports": {
20 ".": {
21 "types": "./dist/index.d.ts"
22 },
23 "./package.json": "./package.json"
24 },
25 "scripts": {
26 "build": "tsc --build",
27 "dev": "tsc --build --watch",
28 "prepublishOnly": "pnpm build",
29 "typecheck": "tsc --noEmit"
30 },
31 "devDependencies": {
32 "typescript": "5.9.3"
33 },
34 "peerDependencies": {
35 "typescript": ">=5.5.3"
36 }
37}