diff --git a/packages/react-rolling-number/package.json b/packages/react-rolling-number/package.json index 9987aaa..0280e14 100644 --- a/packages/react-rolling-number/package.json +++ b/packages/react-rolling-number/package.json @@ -1,7 +1,7 @@ { "name": "react-rolling-number", "author": "fecapark@gmail.com", - "version": "1.1.0", + "version": "1.1.1", "type": "module", "license": "MIT", "repository": { @@ -27,12 +27,12 @@ "exports": { ".": { "import": { - "default": "./esm/index.js", - "types": "./esm/index.d.ts" + "types": "./esm/index.d.ts", + "default": "./esm/index.js" }, "require": { - "default": "./dist/index.cjs", - "types": "./dist/index.d.cts" + "types": "./dist/index.d.cts", + "default": "./dist/index.cjs" } } }, @@ -43,6 +43,7 @@ "scripts": { "dev": "tsdown --watch", "build": "tsc -b && tsdown", + "publish": "pnpm build && pnpm publish --public", "fix": "pnpm fix:lint && pnpm fix:format", "fix:lint": "eslint . --fix", "fix:format": "prettier --write .",