Skip to content

Commit

Permalink
Fix support for Vitest (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
JorWo authored Dec 18, 2024
1 parent f7a77db commit c665c7d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next-cas-client",
"version": "1.3.1",
"version": "1.3.2",
"description": "A CAS client built for Next.js to authenticate, validate tickets, and provide session management to a CAS server",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand All @@ -17,16 +17,19 @@
"exports": {
".": {
"types": "./dist/index.d.mts",
"node": "./dist/index.js",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./app": {
"types": "./dist/app.d.mts",
"node": "./dist/app.js",
"import": "./dist/app.mjs",
"require": "./dist/app.js"
},
"./pages": {
"types": "./dist/pages.d.mts",
"node": "./dist/pages.js",
"import": "./dist/pages.mjs",
"require": "./dist/pages.js"
}
Expand Down

0 comments on commit c665c7d

Please sign in to comment.