{ "name": "@peezy.tech/flow-runtime", "version": "0.3.0", "description": "Generic flow package loader and runner primitives.", "type": "module", "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/peezy-tech/codex-flows.git", "directory": "packages/flow-runtime" }, "keywords": [ "codex", "flows", "automation", "flow-runtime" ], "sideEffects": false, "types": "./dist/index.d.ts", "files": [ "dist", "README.md" ], "publishConfig": { "access": "public" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "scripts": { "build": "bun run --filter @peezy.tech/codex-flows build && bun run clean && tsc -p tsconfig.build.json", "check:types": "tsc --noEmit", "clean": "rm -rf dist", "pack:dry-run": "npm pack --dry-run --json", "prepack": "bun run build", "release:check": "bun run test && bun run check:types && bun run build && bun run pack:dry-run", "test": "bun test test/*.test.ts" }, "dependencies": { "@peezy.tech/codex-flows": "^0.3.0" }, "devDependencies": { "@types/bun": "catalog:", "@types/node": "catalog:", "typescript": "catalog:" } }