1
0
Fork 0
mirror of synced 2024-10-02 10:08:09 +13:00

Fix package.json refs

This commit is contained in:
Adria Navarro 2024-02-21 21:41:27 +01:00
parent 0ad7bde478
commit 667a5ab990

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"
},