changed the folder and added index.js

This commit is contained in:
znetsixe
2025-06-10 12:36:39 +02:00
parent fda8cb33db
commit bc9e3cda90
24 changed files with 3848 additions and 2 deletions

View File

@@ -1,8 +1,17 @@
{
"name": "general-functions",
"name": "generalFunctions",
"version": "1.0.0",
"description": "General utility functions used across multiple Node-RED modules",
"main": "index.js",
"main": "./index.js",
"exports": {
".": "./index.js",
"./menuUtils": "./src/helper/menuUtils.js",
"./mathUtils": "./src/helper/mathUtils.js",
"./assetUtils": "./src/helper/assetUtils.js",
"./outputUtils": "./src/helper/outputUtils.js"
},
"scripts": {
"test": "node test.js"
},