From 83f98e34faab0f2925d2af4a6c4ebdb09e0f3ff1 Mon Sep 17 00:00:00 2001 From: wobsoriano Date: Fri, 4 Nov 2022 08:04:58 -0700 Subject: [PATCH] more eslint fixes --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 2f4907f..664c8de 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,9 @@ "type": "module", "version": "0.4.0-beta.15", "license": "MIT", - "sideEffects": false, + "main": "./dist/index.mjs", + "module": "./dist/index.mjs", + "types": "./dist/index.d.ts", "exports": { "./package.json": "./package.json", ".": { @@ -18,14 +20,12 @@ "import": "./module.mjs" } }, - "main": "./dist/index.mjs", - "module": "./dist/index.mjs", - "types": "./dist/index.d.ts", "files": [ "dist", "client.d.ts", "module.mjs" ], + "sideEffects": false, "scripts": { "dev": "concurrently \"pnpm build --watch\" \"pnpm --filter playground dev\"", "dev:prepare": "pnpm build && nuxt prepare playground",