@openmirai/typeforge 0.1.7 → 0.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -7,7 +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.
8
8
 
9
9
  - **npm:** [`@openmirai/typeforge`](https://www.npmjs.com/package/@openmirai/typeforge)
10
- - **GitHub:** [openmirai/mirai-openapi-codegen](https://github.com/openmirai/mirai-openapi-codegen)
10
+ - **GitHub:** [openmirai/typeforge](https://github.com/openmirai/typeforge)
11
11
 
12
12
  You own `http.ts` (the `HTTPFetch` adapter). Generated files import that adapter — they do not invent axios/fetch calls inline.
13
13
 
@@ -252,7 +252,7 @@ Publishes go through [npm Trusted Publishing](https://docs.npmjs.com/trusted-pub
252
252
  | | Value |
253
253
  | --- | --- |
254
254
  | npm package | `@openmirai/typeforge` |
255
- | GitHub repo | `openmirai/mirai-openapi-codegen` |
255
+ | GitHub repo | `openmirai/typeforge` |
256
256
  | Workflow | `.github/workflows/publish.yml` |
257
257
  | Tag | `v*` (e.g. `v0.1.3`) |
258
258
 
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@openmirai/typeforge",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Typeforge: headless OpenAPI to TypeScript codegen CLI and HTTPFetch runtime",
5
- "homepage": "https://github.com/openmirai/mirai-openapi-codegen#readme",
5
+ "homepage": "https://github.com/openmirai/typeforge#readme",
6
6
  "bugs": {
7
- "url": "https://github.com/openmirai/mirai-openapi-codegen/issues"
7
+ "url": "https://github.com/openmirai/typeforge/issues"
8
8
  },
9
9
  "license": "MIT",
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "git+https://github.com/openmirai/mirai-openapi-codegen.git"
12
+ "url": "git+https://github.com/openmirai/typeforge.git"
13
13
  },
14
14
  "bin": {
15
15
  "openapi-codegen": "./dist/cli.js",