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", "type": "module",
"version": "0.0.0", "version": "0.0.0",
"description": "Handlebars wrapper for Budibase templating.", "description": "Handlebars wrapper for Budibase templating.",
"main": "dist/index.cjs", "main": "dist/bundle.cjs",
"module": "src/index.mjs", "module": "src/index.ts",
"license": "MPL-2.0", "license": "MPL-2.0",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"exports": { "exports": {
".": "./src/index.mjs", ".": {
"require": "./dist/bundle.cjs",
"import": "./src/index.ts"
},
"./package.json": "./package.json", "./package.json": "./package.json",
"./test/utils": "./test/utils.js" "./test/utils": "./test/utils.js"
}, },