Skip to content

Commit

Permalink
fix: revert package.json #1176 (#1183)
Browse files Browse the repository at this point in the history
  • Loading branch information
long76 committed Apr 9, 2023
1 parent 45b59ca commit 03dca46
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,20 @@
"license": "MIT",
"author": "Cody Olsen",
"sideEffects": false,
"type": "commonjs",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"source": "./src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist",
Expand All @@ -59,7 +59,7 @@
"singleQuote": true
},
"dependencies": {
"compute-scroll-into-view": "^3.0.1"
"compute-scroll-into-view": "^3.0.2"
},
"devDependencies": {
"@sanity/pkg-utils": "^2.2.5",
Expand Down

0 comments on commit 03dca46

Please sign in to comment.