From e6153ac77d0b4857fe2c333bc806ede471da3ec5 Mon Sep 17 00:00:00 2001 From: itsuka <101444904+itsuka-dev@users.noreply.github.com> Date: Sat, 2 Sep 2023 12:50:08 +0900 Subject: [PATCH] fix: move default to the last in package.json --- package.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index c26e94e6..afa1d2ef 100644 --- a/package.json +++ b/package.json @@ -18,22 +18,22 @@ ], "exports": { ".": { - "default": "./dist/index.js", "import": "./dist/index.js", "node": "./dist/index.js", - "types": "./dist/index.d.ts" + "types": "./dist/index.d.ts", + "default": "./dist/index.js" }, "./commands": { - "default": "./dist/commands.js", "import": "./dist/commands.js", "node": "./dist/commands.js", - "types": "./dist/commands.d.ts" + "types": "./dist/commands.d.ts", + "default": "./dist/commands.js" }, "./commands.js": { - "default": "./dist/commands.js", "import": "./dist/commands.js", "node": "./dist/commands.js", - "types": "./dist/commands.d.ts" + "types": "./dist/commands.d.ts", + "default": "./dist/commands.js" } }, "engines": {