UNPKG

durable-execution

Version:

A durable task engine for running tasks durably and resiliently

69 lines 1.74 kB
{ "name": "durable-execution", "version": "0.11.0", "description": "A durable task engine for running tasks durably and resiliently", "author": "Garvit Pahal <g10pahal@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/gpahal/durable-execution.git", "directory": "durable-execution" }, "homepage": "https://gpahal.github.io/durable-execution", "bugs": { "url": "https://github.com/gpahal/durable-execution/issues" }, "keywords": [ "durable-execution", "durable-tasks", "durable-functions", "durable-workflows", "workflow-engine", "workflow-execution", "durable", "resilient" ], "sideEffects": false, "type": "module", "exports": { "./package.json": "./package.json", ".": { "import": "./build/index.js", "types": "./build/index.d.ts" } }, "module": "./build/index.js", "types": "./build/index.d.ts", "files": [ "package.json", "src", "build" ], "simple-git-hooks": { "pre-commit": "pnpm pre-commit", "pre-push": "pnpm pre-commit" }, "dependencies": { "@gpahal/std": "^0.0.30", "@standard-schema/spec": "^1.0.0", "@standard-schema/utils": "^0.3.0", "nanoid": "^5.1.5", "superjson": "^2.2.2", "ts-custom-error": "^3.3.1", "zod": "^4.0.15" }, "devDependencies": { "typedoc": "^0.28.9", "typedoc-plugin-mermaid": "^1.12.0" }, "scripts": { "build": "premove build && tsup", "build-docs": "tsx scripts/build-docs.ts", "clean": "premove build", "test": "vitest run", "test-coverage": "vitest run --coverage", "type-check": "tsc --noEmit", "lint": "eslint .", "lint-fix": "eslint . --fix" } }