Update dependencies and add logging

Upgraded package.json to version 1.1.0 and added several development dependencies. Introduced a logger for better tracking of operations. Additionally, improved type definitions across the project and integrated enhanced ESLint configurations.
This commit is contained in:
2024-11-15 00:08:01 -05:00
parent 8240ce15f4
commit 22fa9597ca
9 changed files with 632 additions and 125 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "workflow-function-manifold",
"version": "1.0.9",
"version": "1.1.0",
"type": "module",
"description": "for building dynamic, LLM-driven workflows using a region-based execution model",
"main": "src/index.ts",
@@ -34,10 +34,15 @@
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/bun": "latest",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"bun": "^1.1.34",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
"typescript": "^5.6.3",
"tslog": "^4.9.3"
}
}