Skip to content

Commit

Permalink
downgrade nanoid to support cjs require
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardssh committed Dec 18, 2022
1 parent 76518a8 commit c06cfed
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
22 changes: 11 additions & 11 deletions package-lock.json

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

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libertymp/orpc",
"version": "0.0.2",
"version": "0.0.3",
"publishConfig": {
"access": "public"
},
Expand All @@ -25,20 +25,20 @@
"type-check": "tsc -p src --noEmit"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"devDependencies": {
"prettier": "^2.8.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"dependencies": {
"nanoid": "^4.0.0",
"nanoid": "^3.3.4",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4"
}
Expand Down

0 comments on commit c06cfed

Please sign in to comment.