From c31ab4d3a38e74e20b5d0687ded47baaec1545b8 Mon Sep 17 00:00:00 2001 From: Felix Palmer Date: Mon, 29 Jan 2024 11:03:27 +0100 Subject: [PATCH] Publint fixes --- package.json | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 3824516..759a4ba 100644 --- a/package.json +++ b/package.json @@ -3,19 +3,24 @@ "version": "0.1.9", "description": "Utility functions for working with Quadbins", "license": "MIT", + "type": "module", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "umd:main": "dist/umd/index.js", - "types": "dist/types/index.d.js", + "types": "dist/types/index.d.ts", "exports": { ".": { + "types": "./dist/types/index.d.ts", "import": "./dist/esm/index.js", - "require": "./dist/cjs/index.js", - "types": "./dist/types/index.d.ts" + "require": "./dist/cjs/index.js" }, "./*": "./*" }, - "keywords": ["quadbin", "webgl", "visualization"], + "keywords": [ + "quadbin", + "webgl", + "visualization" + ], "repository": { "type": "git", "url": "https://github.com/CartoDB/quadbin-js.git"