Files
manifold-workflow-engine/package.json
Geoff Seemueller e0895fa120 Update README, licensing, and logger implementation
Removed redundant instructions in the README and added a more detailed example. Changed the project's license from MIT to AGPL-3.0-or-later for stronger copyleft and network service provisions. Adjusted logger export and declarations to follow clean coding practices. Upgraded build scripts and distribution settings in package.json for improved module handling and output integrity. Remove pnpm-lock.yaml.
2024-12-05 10:36:44 -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 --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"
}
}