Files
manifold-workflow-engine/package.json

37 lines
945 B
JSON

{
"name": "workflow-function-manifold",
"version": "1.0.6",
"type": "module",
"description": "for building dynamic, LLM-driven workflows using a region-based execution model",
"main": "lib.js",
"module": "lib.js",
"types": "lib.d.ts",
"exports": {
".": {
"import": "./lib.js",
"require": "./lib.js"
}
},
"bin": {
"workflow-function-manifold": "./bin.js"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"deploy:dev": "pnpm publish .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\"",
"fix": "pnpm format && pnpm lint:fix"
},
"keywords": [],
"author": "geoffsee",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.14.0",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"prettier": "^3.3.3"
}
}