1
0
Fork 0
mirror of synced 2024-09-08 21:51:58 +12:00
budibase/packages/string-templates/package.json

53 lines
1.6 KiB
JSON
Raw Normal View History

{
"name": "@budibase/string-templates",
2023-05-29 20:54:10 +12:00
"version": "0.0.0",
"description": "Handlebars wrapper for Budibase templating.",
"main": "src/index.cjs",
"module": "dist/bundle.mjs",
2021-11-18 03:21:16 +13:00
"license": "MPL-2.0",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./src/index.cjs",
"import": "./dist/bundle.mjs"
},
2024-01-16 00:30:47 +13:00
"./package.json": "./package.json",
2024-02-01 04:15:53 +13:00
"./index-helpers": "./dist/index-helpers.bundled.js",
"./test/utils": "./test/utils.js"
},
2022-02-09 00:30:23 +13:00
"files": [
2022-02-09 04:13:16 +13:00
"dist",
"src",
"manifest.json"
2022-02-09 00:30:23 +13:00
],
"scripts": {
"build:esbuild": "esbuild --minify --bundle src/index-helpers.js --outfile=dist/index-helpers.bundled.js --platform=node --format=esm --external:handlebars",
2024-01-15 23:01:13 +13:00
"build": "yarn build:esbuild && tsc && rollup -c",
"dev": "concurrently \"yarn build:esbuild --watch\" \"tsc && rollup -cw\"",
"test": "jest",
"manifest": "node ./scripts/gen-collection-info.js"
},
"dependencies": {
2024-01-31 05:09:41 +13:00
"@budibase/handlebars-helpers": "^0.13.1",
"dayjs": "^1.10.8",
"handlebars": "^4.7.6",
2024-01-11 02:56:29 +13:00
"lodash.clonedeep": "^4.5.0",
"vm2": "^3.9.19"
},
"devDependencies": {
2023-08-02 10:56:43 +12:00
"@rollup/plugin-commonjs": "^17.1.0",
2021-01-22 05:44:03 +13:00
"@rollup/plugin-json": "^4.1.0",
2024-01-15 23:01:13 +13:00
"concurrently": "^8.2.2",
"doctrine": "^3.0.0",
2023-11-07 02:24:33 +13:00
"jest": "29.7.0",
"marked": "^4.0.10",
2023-08-02 10:56:43 +12:00
"rollup": "^2.36.2",
"rollup-plugin-inject-process-env": "^1.3.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
2023-08-02 10:56:43 +12:00
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
2023-09-23 04:17:19 +12:00
"typescript": "5.2.2"
}
2022-12-10 02:52:03 +13:00
}