Skip to content

Commit

Permalink
Fixed broken export and build configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
JUGG097 committed Jul 4, 2023
1 parent 78c6178 commit 316a9f5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "retrievetokens",
"version": "1.0.6",
"version": "1.0.7",
"description": "A simple package for interacting with web client storages like `localStorage`",
"source": "src/index.ts",
"source": "src/index.ts",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"exports": {
"type": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.modern.mjs"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle src/*.ts",
"dev": "microbundle watch src/*.ts",
Expand Down

0 comments on commit 316a9f5

Please sign in to comment.