Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Default owners for this repository.
# GitHub: openmirai/mirai-openapi-codegen
# GitHub: openmirai/typeforge
# npm: @openmirai/typeforge
* @openmirai/platform-foundations @openmirai/openmirai-engineer
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Headless **OpenAPI / Swagger → TypeScript** codegen. The CLI is `typeforge`. It reads a spec, writes typed route enums, request types, and HTTP caller functions, and never talks to a network.

- **npm:** [`@openmirai/typeforge`](https://www.npmjs.com/package/@openmirai/typeforge)
- **GitHub:** [openmirai/mirai-openapi-codegen](https://github.com/openmirai/mirai-openapi-codegen)
- **GitHub:** [openmirai/typeforge](https://github.com/openmirai/typeforge)

You own `http.ts` (the `HTTPFetch` adapter). Generated files import that adapter — they do not invent axios/fetch calls inline.

Expand Down Expand Up @@ -252,7 +252,7 @@ Publishes go through [npm Trusted Publishing](https://docs.npmjs.com/trusted-pub
| | Value |
| --- | --- |
| npm package | `@openmirai/typeforge` |
| GitHub repo | `openmirai/mirai-openapi-codegen` |
| GitHub repo | `openmirai/typeforge` |
| Workflow | `.github/workflows/publish.yml` |
| Tag | `v*` (e.g. `v0.1.3`) |

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@openmirai/typeforge",
"version": "0.1.7",
"version": "0.1.8",
"description": "Typeforge: headless OpenAPI to TypeScript codegen CLI and HTTPFetch runtime",
"homepage": "https://github.com/openmirai/mirai-openapi-codegen#readme",
"homepage": "https://github.com/openmirai/typeforge#readme",
"bugs": {
"url": "https://github.com/openmirai/mirai-openapi-codegen/issues"
"url": "https://github.com/openmirai/typeforge/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/openmirai/mirai-openapi-codegen.git"
"url": "git+https://github.com/openmirai/typeforge.git"
},
"bin": {
"openapi-codegen": "./dist/cli.js",
Expand Down
Loading