durable-execution-storage-drizzle
Version:
Drizzle ORM storage implementation for durable-execution
69 lines • 1.73 kB
JSON
{
"name": "durable-execution-storage-drizzle",
"version": "0.9.0",
"description": "Drizzle ORM storage implementation for durable-execution",
"author": "Garvit Pahal <g10pahal@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gpahal/durable-execution.git",
"directory": "storage-drizzle"
},
"homepage": "https://gpahal.github.io/durable-execution",
"bugs": {
"url": "https://github.com/gpahal/durable-execution/issues"
},
"keywords": [
"drizzle",
"drizzle-orm",
"storage",
"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"
],
"peerDependencies": {
"drizzle-orm": "^0.44.4",
"durable-execution": "^0.11.0"
},
"devDependencies": {
"@gpahal/std": "^0.0.30",
"@electric-sql/pglite": "^0.3.7",
"@libsql/client": "^0.15.10",
"@testcontainers/mysql": "^11.5.1",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.44.4",
"mysql2": "^3.14.3",
"testcontainers": "^11.5.1",
"durable-execution": "0.11.0"
},
"scripts": {
"build": "premove build && tsup",
"clean": "premove build",
"test": "vitest run",
"test-coverage": "vitest run --coverage",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
}
}