fork of hey-api/openapi-ts because I need some additional things
1{
2 "name": "@hey-api/spec-types",
3 "version": "0.1.0",
4 "description": "📃 TypeScript definitions for OpenAPI and JSON Schema specifications with complete inline documentation.",
5 "keywords": [
6 "definitions",
7 "documentation",
8 "json",
9 "jsonschema",
10 "openapi",
11 "schema",
12 "spec",
13 "specification",
14 "swagger",
15 "types",
16 "typescript"
17 ],
18 "homepage": "https://heyapi.dev/",
19 "bugs": {
20 "url": "https://github.com/hey-api/openapi-ts/issues"
21 },
22 "license": "MIT",
23 "author": {
24 "name": "Hey API",
25 "email": "lubos@heyapi.dev",
26 "url": "https://heyapi.dev"
27 },
28 "repository": {
29 "type": "git",
30 "url": "git+https://github.com/hey-api/openapi-ts.git"
31 },
32 "funding": "https://github.com/sponsors/hey-api",
33 "files": [
34 "dist",
35 "LICENSE.md",
36 "README.md"
37 ],
38 "type": "module",
39 "sideEffects": false,
40 "types": "./dist/index.d.mts",
41 "exports": {
42 ".": {
43 "types": "./dist/index.d.mts"
44 },
45 "./package.json": "./package.json"
46 },
47 "scripts": {
48 "build": "tsdown",
49 "dev": "tsdown --watch",
50 "prepublishOnly": "pnpm build",
51 "typecheck": "tsgo --noEmit"
52 },
53 "dependencies": {
54 "@hey-api/types": "workspace:*"
55 },
56 "devDependencies": {
57 "typescript": "5.9.3"
58 }
59}