UNPKG

durable-execution-orpc-utils

Version:

oRPC utilities for durable-execution to create a separate server process for durable execution

70 lines 1.91 kB
{ "name": "durable-execution-orpc-utils", "version": "0.21.0", "description": "oRPC utilities for durable-execution to create a separate server process for durable execution", "author": "Garvit Pahal <g10pahal@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/gpahal/durable-execution.git", "directory": "durable-execution-orpc-utils" }, "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", "./server": { "import": "./build/server.js", "types": "./build/server.d.ts" }, "./client": { "import": "./build/client.js", "types": "./build/client.d.ts" } }, "module": "./build/server.js", "types": "./build/server.d.ts", "files": [ "package.json", "src", "build" ], "peerDependencies": { "@orpc/client": "^catalog:dev", "@orpc/contract": "^catalog:dev", "@orpc/server": "^catalog:dev", "durable-execution": "0.21.0" }, "dependencies": { "@gpahal/std": "^0.0.32" }, "devDependencies": { "@orpc/client": "^1.8.0", "@orpc/contract": "^1.8.0", "@orpc/server": "^1.8.0", "durable-execution": "0.21.0" }, "scripts": { "build": "premove build && tsup", "clean": "premove build", "test": "vitest run", "test-coverage": "vitest run --coverage", "type-check": "tsc --noEmit && typedoc --options ../typedoc.json --emit none --entryPoints src/server.ts --entryPoints src/client.ts", "lint": "eslint .", "lint-fix": "eslint . --fix" } }