Skip to content

Commit

Permalink
🔧 fix: invalid json
Browse files Browse the repository at this point in the history
  • Loading branch information
SaltyAom committed Jul 9, 2024
1 parent 1ca9363 commit 33de985
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,19 @@
"type": "git",
"url": "https://github.com/elysiajs/elysia-cors"
},
"main": "./dist/cjs/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"package.json": "./package.json"
"package.json": "./package.json",
".": {
"bun": "./dist/index.js",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"import": "./dist/index.js",
"default": "./dist/cjs/index.js",
"types": "./dist/index.d.ts",
},
"types": "./dist/index.d.ts"
}
},
"homepage": "https://github.com/elysiajs/elysia-cors",
"keywords": [
Expand Down

0 comments on commit 33de985

Please sign in to comment.