Skip to content
This repository has been archived by the owner on Oct 5, 2023. It is now read-only.

Commit

Permalink
fix: get exports working in TS nodeNext (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
kanadgupta committed Sep 12, 2023
1 parent a5339a5 commit 60db31f
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,21 @@
"name": "oas-normalize",
"version": "10.0.0",
"description": "Tooling for converting, validating, and parsing OpenAPI, Swagger, and Postman API definitions",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./lib/utils": {
"types": "./dist/lib/utils.d.ts",
"require": "./dist/lib/utils.js",
"import": "./dist/lib/utils.mjs"
"require": "./dist/lib/utils.cjs",
"import": "./dist/lib/utils.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.cts",
"engines": {
"node": ">=18"
},
Expand Down

0 comments on commit 60db31f

Please sign in to comment.