Skip to content

Commit

Permalink
chore(release): publish
Browse files Browse the repository at this point in the history
- project: core 0.2.1
  • Loading branch information
MathurAditya724 committed Dec 3, 2024
1 parent 8e7407a commit 15e238b
Show file tree
Hide file tree
Showing 3 changed files with 126 additions and 100 deletions.
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.2.1 (2024-12-03)

### 🩹 Fixes

- **core:** resolved json to openapi conversion issue ([8e7407a](https://github.com/rhinobase/hono-openapi/commit/8e7407a))
- **core:** parameter was not getting marked required ([0958652](https://github.com/rhinobase/hono-openapi/commit/0958652))

## 0.2.0 (2024-12-02)

### 🚀 Features
Expand Down
193 changes: 93 additions & 100 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,100 +1,93 @@
{
"name": "hono-openapi",
"description": "OpenAPI schema generator for Hono",
"version": "0.2.0",
"license": "MIT",
"keywords": [
"hono",
"openapi",
"zod",
"valibot",
"typebox",
"arktype"
],
"homepage": "https://github.com/rhinobase/hono-openapi",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhinobase/hono-openapi.git",
"directory": "packages/core"
},
"bugs": {
"url": "https://github.com/rhinobase/hono-openapi/issues"
},
"dependencies": {
"json-schema-walker": "^2.0.0"
},
"optionalDependencies": {
"@hono/arktype-validator": "^2.0.0",
"@hono/typebox-validator": "^0.2.6",
"@hono/valibot-validator": "^0.5.1",
"@hono/zod-validator": "^0.4.1",
"@sinclair/typebox": "^0.34.9",
"@valibot/to-json-schema": "^1.0.0-beta.3",
"arktype": "2.0.0-rc.25",
"hono": "^4.6.4",
"openapi-types": "^12.1.3",
"valibot": "^1.0.0-beta.9",
"zod": "^3.23.8",
"zod-openapi": "^4.0.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@apidevtools/json-schema-ref-parser": "^11.7.2",
"@types/json-schema": "^7.0.15"
},
"exports": {
".": {
"import": {
"default": "./index.esm.js",
"types": "./index.esm.d.ts"
},
"require": {
"default": "./index.cjs.js",
"types": "./index.cjs.d.ts"
}
},
"./zod": {
"import": {
"default": "./zod.esm.js",
"types": "./zod.esm.d.ts"
},
"require": {
"default": "./zod.cjs.js",
"types": "./zod.cjs.d.ts"
}
},
"./valibot": {
"import": {
"default": "./valibot.esm.js",
"types": "./valibot.esm.d.ts"
},
"require": {
"default": "./valibot.cjs.js",
"types": "./valibot.cjs.d.ts"
}
},
"./typebox": {
"import": {
"default": "./typebox.esm.js",
"types": "./typebox.esm.d.ts"
},
"require": {
"default": "./typebox.cjs.js",
"types": "./typebox.cjs.d.ts"
}
},
"./arktype": {
"import": {
"default": "./arktype.esm.js",
"types": "./arktype.esm.d.ts"
},
"require": {
"default": "./arktype.cjs.js",
"types": "./arktype.cjs.d.ts"
}
}
}
}
{
"name": "hono-openapi",
"description": "OpenAPI schema generator for Hono",
"version": "0.2.1",
"license": "MIT",
"keywords": ["hono", "openapi", "zod", "valibot", "typebox", "arktype"],
"homepage": "https://github.com/rhinobase/hono-openapi",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhinobase/hono-openapi.git",
"directory": "packages/core"
},
"bugs": {
"url": "https://github.com/rhinobase/hono-openapi/issues"
},
"dependencies": {
"json-schema-walker": "^2.0.0"
},
"optionalDependencies": {
"@hono/arktype-validator": "^2.0.0",
"@hono/typebox-validator": "^0.2.6",
"@hono/valibot-validator": "^0.5.1",
"@hono/zod-validator": "^0.4.1",
"@sinclair/typebox": "^0.34.9",
"@valibot/to-json-schema": "^1.0.0-beta.3",
"arktype": "2.0.0-rc.25",
"hono": "^4.6.4",
"openapi-types": "^12.1.3",
"valibot": "^1.0.0-beta.9",
"zod": "^3.23.8",
"zod-openapi": "^4.0.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@apidevtools/json-schema-ref-parser": "^11.7.2",
"@types/json-schema": "^7.0.15"
},
"exports": {
".": {
"import": {
"default": "./index.esm.js",
"types": "./index.esm.d.ts"
},
"require": {
"default": "./index.cjs.js",
"types": "./index.cjs.d.ts"
}
},
"./zod": {
"import": {
"default": "./zod.esm.js",
"types": "./zod.esm.d.ts"
},
"require": {
"default": "./zod.cjs.js",
"types": "./zod.cjs.d.ts"
}
},
"./valibot": {
"import": {
"default": "./valibot.esm.js",
"types": "./valibot.esm.d.ts"
},
"require": {
"default": "./valibot.cjs.js",
"types": "./valibot.cjs.d.ts"
}
},
"./typebox": {
"import": {
"default": "./typebox.esm.js",
"types": "./typebox.esm.d.ts"
},
"require": {
"default": "./typebox.cjs.js",
"types": "./typebox.cjs.d.ts"
}
},
"./arktype": {
"import": {
"default": "./arktype.esm.js",
"types": "./arktype.esm.d.ts"
},
"require": {
"default": "./arktype.cjs.js",
"types": "./arktype.cjs.d.ts"
}
}
}
}
26 changes: 26 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 15e238b

Please sign in to comment.