From 512a0ae7b199ebed9bb81dc13d1c3e81b0397339 Mon Sep 17 00:00:00 2001 From: wobsoriano Date: Fri, 4 Nov 2022 08:04:46 -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 664c8de..2f4907f 100644 --- a/package.json +++ b/package.json @@ -3,9 +3,7 @@ "type": "module", "version": "0.4.0-beta.15", "license": "MIT", - "main": "./dist/index.mjs", - "module": "./dist/index.mjs", - "types": "./dist/index.d.ts", + "sideEffects": false, "exports": { "./package.json": "./package.json", ".": { @@ -20,12 +18,14 @@ "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",