@alt-stack/zod-openapi 1.1.0 → 1.1.1

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @alt-stack/zod-openapi@1.1.0 build /home/runner/work/alt-stack/alt-stack/packages/zod-openapi
2
+ > @alt-stack/zod-openapi@1.1.1 build /home/runner/work/alt-stack/alt-stack/packages/zod-openapi
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -12,11 +12,11 @@
12
12
  CJS Build start
13
13
  CJS dist/index.cjs 26.95 KB
14
14
  CJS dist/index.cjs.map 55.60 KB
15
- CJS ⚡️ Build success in 31ms
15
+ CJS ⚡️ Build success in 37ms
16
16
  ESM dist/index.js 25.41 KB
17
17
  ESM dist/index.js.map 54.74 KB
18
- ESM ⚡️ Build success in 31ms
18
+ ESM ⚡️ Build success in 37ms
19
19
  DTS Build start
20
- DTS ⚡️ Build success in 1450ms
20
+ DTS ⚡️ Build success in 1339ms
21
21
  DTS dist/index.d.ts 4.83 KB
22
22
  DTS dist/index.d.cts 4.83 KB
package/package.json CHANGED
@@ -1,11 +1,18 @@
1
1
  {
2
2
  "name": "@alt-stack/zod-openapi",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Convert OpenAPI schemas to Zod schemas with TypeScript code generation",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
7
7
  "module": "./dist/index.js",
8
8
  "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
9
16
  "bin": {
10
17
  "zod-openapi": "./bin/zod-openapi.js"
11
18
  },