🔧 Use main instead of module in package.json

This commit is contained in:
RaviAnand Mohabir 2021-05-25 23:15:33 +02:00
parent 9f8363f49a
commit ab51aed0c5
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
{ {
"internal": true, "internal": true,
"module": "../dist/client/index.js", "main": "../dist/client/index.js",
"types": "../dist/client/index.d.ts" "types": "../dist/client/index.d.ts"
} }

View File

@ -2,7 +2,7 @@
"name": "sk-auth", "name": "sk-auth",
"version": "0.3.5", "version": "0.3.5",
"description": "Authentication library for use with SvelteKit featuring built-in OAuth providers and zero restriction customization!", "description": "Authentication library for use with SvelteKit featuring built-in OAuth providers and zero restriction customization!",
"module": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"exports": { "exports": {
".": "./dist/index.js", ".": "./dist/index.js",

View File

@ -1,5 +1,5 @@
{ {
"internal": true, "internal": true,
"module": "../dist/providers/index.js", "main": "../dist/providers/index.js",
"types": "../dist/providers/index.d.ts" "types": "../dist/providers/index.d.ts"
} }