28 lines
773 B
JSON
28 lines
773 B
JSON
{
|
|
"name": "workflow-function-manifold",
|
|
"version": "1.0.3",
|
|
"type": "module",
|
|
"description": "for building dynamic, LLM-driven workflows using a region-based execution model",
|
|
"main": "index.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",
|
|
"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"
|
|
}
|
|
}
|