24 lines
526 B
JSON
24 lines
526 B
JSON
{
|
|
"name": "@peezy.tech/flow-runtime",
|
|
"version": "0.1.0",
|
|
"description": "Generic flow package loader and runner primitives.",
|
|
"type": "module",
|
|
"private": true,
|
|
"license": "Apache-2.0",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --noEmit",
|
|
"check:types": "tsc --noEmit",
|
|
"test": "bun test test/*.test.ts"
|
|
},
|
|
"dependencies": {
|
|
"@peezy.tech/codex-flows": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "catalog:",
|
|
"@types/node": "catalog:",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|