Files
manifold-workflow-engine/package.json
Geoff Seemueller 7b005c12fa Update build script to include logger.ts in build process
The build command now includes `logger.ts` to ensure it is bundled correctly. This change prevents potential runtime issues by explicitly compiling all necessary source files. Minor formatting was also applied in `cli.ts`.
2024-12-11 13:49:28 -05:00

52 lines
1.5 KiB
JSON

{
"name": "workflow-function-manifold",
"version": "2.0.0",
"type": "module",
"description": "for building dynamic, LLM-driven workflows using a region-based execution model",
"license": "AGPL-3.0-or-later",
"repository": "https://github.com/geoffsee/workflow-function-manifold.git",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"bin": {
"workflow-function-manifold": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"start": "bun src/cli.ts",
"dev": "bun src/cli.ts",
"build": "rm -rf dist && bun build ./src/index.ts ./src/cli.ts ./src/logger.ts --splitting --outdir dist --target node && bun ./build.ts",
"prepublishOnly": "bun run build",
"cli": "bun ./src/cli.ts",
"test": "bun test && node dist/cli.js",
"lint": "eslint .",
"deploy:dev": "bun publish",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\"",
"fix": "bun run format && bun run lint:fix"
},
"keywords": [],
"author": "geoffsee",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/bun": "latest",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"bun-plugin-isolated-decl": "^0.1.6",
"@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",
"tslog": "^4.9.3"
}
}