bellows 0.0.7

Durable task processing framework in Rust for applications of all sizes
Documentation
{
  "name": "@xjonathanlei/bellows",
  "version": "0.0.7",
  "description": "TypeScript port of bellows, a durable task processing framework",
  "license": "MIT OR Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/xJonathanLEI/bellows.git",
    "directory": "bellows-ts"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./backends/in-memory": {
      "types": "./dist/backends/in-memory.d.ts",
      "default": "./dist/backends/in-memory.js"
    },
    "./backends/postgres": {
      "types": "./dist/backends/postgres.d.ts",
      "default": "./dist/backends/postgres.js"
    },
    "./backends/sqlite": {
      "types": "./dist/backends/sqlite.d.ts",
      "default": "./dist/backends/sqlite.js"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "test": "vitest run",
    "typecheck": "tsc --noEmit -p tsconfig.typecheck.json"
  },
  "dependencies": {
    "pg": "catalog:"
  },
  "devDependencies": {
    "@types/node": "catalog:",
    "@types/pg": "catalog:",
    "typescript": "catalog:",
    "vitest": "catalog:"
  }
}