Fix package.json refs

This commit is contained in:
Adria Navarro 2024-02-21 21:41:27 +01:00
parent 0ad7bde478
commit 667a5ab990
1 changed files with 6 additions and 3 deletions

View File

@ -3,12 +3,15 @@
"type": "module",
"version": "0.0.0",
"description": "Handlebars wrapper for Budibase templating.",
"main": "dist/index.cjs",
"module": "src/index.mjs",
"main": "dist/bundle.cjs",
"module": "src/index.ts",
"license": "MPL-2.0",
"types": "dist/index.d.ts",
"exports": {
".": "./src/index.mjs",
".": {
"require": "./dist/bundle.cjs",
"import": "./src/index.ts"
},
"./package.json": "./package.json",
"./test/utils": "./test/utils.js"
},