There was an error while loading. Please reload this page.
1 parent ea76748 commit 87a3d97Copy full SHA for 87a3d97
1 file changed
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "xid-ts",
3
"type": "module",
4
- "version": "1.1.3",
+ "version": "1.1.4",
5
"author": "0xZensh <txr1883@gmail.com>",
6
"description": "xid is a globally unique id generator thought for the web. A Typescript port of https://github.com/rs/xid.",
7
"license": "MIT",
@@ -16,10 +16,16 @@
16
"LICENSE",
17
"README.md"
18
],
19
- "main": "dist/cjs/index",
20
- "module": "dist/esm/index",
21
- "unpkg": "dist/esm/index",
22
- "typings": "dist/esm/index.d.ts",
+ "unpkg": "./dist/esm/index.js",
+ "main": "./dist/cjs/index.js",
+ "module": "./dist/esm/index.js",
+ "exports": {
23
+ ".": {
24
+ "import": "./dist/esm/index.js",
25
+ "require": "./dist/cjs/index.js"
26
+ }
27
+ },
28
+ "typings": "./dist/esm/index.d.ts",
29
"browser": {
30
"node:crypto": false
31
},
0 commit comments