Fix package.json refs
This commit is contained in:
parent
0ad7bde478
commit
667a5ab990
|
@ -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"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue