Files
manifold-workflow-engine/package.json
Geoff Seemueller b5b23a8aec Add relevant keywords to package.json for discoverability
Include keywords such as "llm", "workflow", and "agent" to improve the project's visibility in searches. This change ensures better categorization and enhances discoverability for relevant audiences.
2024-12-24 19:23:14 -05:00

61 lines
1.6 KiB
JSON

{
"name": "manifold-workflow-engine",
"version": "2.0.3",
"author": "seemueller-io",
"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/seemueller-io/workflow-engine.git",
"keywords": [
"llm",
"workflow",
"function",
"manifold",
"ai",
"agent",
"agentic",
"engine"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"bin": {
"manifold-workflow-engine": "./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"
},
"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"
}
}