@moora/moorex
Version:
A generic asynchronous Moore machine for building persistent AI agents that survive crashes, restarts, or migrations
57 lines (56 loc) • 1.38 kB
JSON
{
"name": "@moora/moorex",
"version": "0.1.0",
"description": "A generic asynchronous Moore machine for building persistent AI agents that survive crashes, restarts, or migrations",
"keywords": [
"moore-machine",
"state-machine",
"agent",
"persistent",
"effects",
"async",
"reconciliation",
"ai-agent",
"state-management",
"automata"
],
"main": "src/index.ts",
"module": "src/index.ts",
"type": "module",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shazhou-ww/moora.git",
"directory": "packages/moorex"
},
"homepage": "https://github.com/shazhou-ww/moora/tree/main/packages/moorex#readme",
"bugs": {
"url": "https://github.com/shazhou-ww/moora/issues"
},
"dependencies": {
"mutative": "^1.3.0"
},
"devDependencies": {
"@types/bun": "latest",
"@vitest/coverage-v8": "^4.0.12",
"@vitest/ui": "4.0.12",
"vitest": "^4.0.12"
},
"peerDependencies": {
"typescript": "^5"
},
"files": [
"README.md",
"README.zh.md",
"llm.md",
"src",
"moorex.svg"
],
"scripts": {
"test": "vitest --run --no-ui",
"test:coverage": "vitest --run --coverage --no-ui",
"test:ui": "vitest --ui",
"test:ci": "vitest --run --coverage --no-ui"
}
}