codex-flows/packages/flow-runtime/package.json
matamune e7b7b1b342
Some checks failed
ci / check (push) Failing after 18s
Add reusable flow client runtime
2026-05-15 20:38:09 +00:00

62 lines
1.5 KiB
JSON

{
"name": "@peezy.tech/flow-runtime",
"version": "0.3.1",
"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"
},
"./backend-client": {
"types": "./dist/backend-client.d.ts",
"import": "./dist/backend-client.js"
},
"./local-client": {
"types": "./dist/local-client.d.ts",
"import": "./dist/local-client.js"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.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.1"
},
"devDependencies": {
"@types/bun": "catalog:",
"@types/node": "catalog:",
"typescript": "catalog:"
}
}