We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8242a3a commit 56cefc4Copy full SHA for 56cefc4
1 file changed
package.json
@@ -1,16 +1,21 @@
1
{
2
"name": "@power-rent/try-catch",
3
- "version": "0.0.3",
+ "version": "0.0.4",
4
"description": "A TypeScript utility for simplified async error handling with Sentry integration",
5
- "main": "dist/nextjs/index.js",
6
- "module": "dist/nextjs/esm/index.js",
7
- "types": "dist/nextjs/index.d.ts",
+ "main": "dist/index.js",
+ "module": "dist/esm/index.js",
+ "types": "dist/index.d.ts",
8
"files": [
9
"dist/**/*",
10
"README.md",
11
"LICENSE"
12
],
13
"exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "require": "./dist/index.js",
17
+ "import": "./dist/esm/index.js"
18
+ },
19
"./nextjs": {
20
"types": "./dist/nextjs/index.d.ts",
21
"require": "./dist/nextjs/index.js",
0 commit comments