{ "name": "@alga-psa/workflows", "version": "0.1.0", "private": true, "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./src/index.ts", "types": "./src/index.ts" }, "./actions": { "import": "./src/actions/index.ts", "types": "./src/actions/index.ts" }, "./actions/*": { "import": "./src/actions/*.ts", "types": "./src/actions/*.ts" }, "./components": { "import": "./src/components/index.ts", "types": "./src/components/index.ts" }, "./components/*": { "import": "./src/components/*.tsx", "types": "./src/components/*.tsx" }, "./hooks/*": { "import": "./src/hooks/*.ts", "types": "./src/hooks/*.ts" }, "./constants/*": { "import": "./src/constants/*.ts", "types": "./src/constants/*.ts" }, "./runtime": { "import": "./dist/runtime/index.mjs", "types": "./src/runtime/index.ts" }, "./runtime/core": { "import": "./dist/runtime/core.mjs", "types": "./src/runtime/core.ts" }, "./runtime/bootstrap": { "import": "./dist/runtime/bootstrap.mjs", "types": "./src/runtime/bootstrap.ts" }, "./runtime/worker": { "import": "./dist/runtime/worker.mjs", "types": "./src/runtime/worker.ts" }, "./authoring": { "import": "./src/authoring/index.ts", "types": "./src/authoring/index.ts" }, "./runtime/*": { "import": "./dist/runtime/*.mjs", "types": "./src/runtime/*.ts" }, "./workers": { "import": "./src/workers/index.ts", "types": "./src/workers/index.ts" }, "./persistence": { "import": "./dist/persistence/index.mjs", "types": "./src/persistence/index.ts" }, "./persistence/*": { "import": "./dist/persistence/*.mjs", "types": "./src/persistence/*.ts" }, "./bundle": { "import": "./src/bundle/index.ts", "types": "./src/bundle/index.ts" }, "./bundle/*": { "import": "./src/bundle/*.ts", "types": "./src/bundle/*.ts" }, "./expression-authoring": { "import": "./src/expression-authoring/index.ts", "types": "./src/expression-authoring/index.ts" }, "./secrets": { "import": "./dist/secrets/index.mjs", "types": "./src/secrets/index.ts" }, "./adapters/*": { "import": "./src/adapters/*.ts", "types": "./src/adapters/*.ts" }, "./types": { "import": "./src/types/index.ts", "types": "./src/types/index.ts" }, "./forms/*": { "import": "./src/forms/*.ts", "types": "./src/forms/*.ts" }, "./lib/*": { "import": "./dist/lib/*.mjs", "types": "./src/lib/*.ts" }, "./models/*": { "import": "./src/models/*.ts", "types": "./src/models/*.ts" } }, "scripts": { "build": "tsup", "typecheck": "tsc --noEmit", "test": "vitest run" }, "dependencies": { "@alga-psa/core": "*", "@alga-psa/db": "*", "@alga-psa/event-bus": "*", "@alga-psa/event-schemas": "*", "@alga-psa/types": "*", "@alga-psa/user-composition": "*", "@alga-psa/validation": "*", "ajv": "^8.12.0", "ajv-formats": "^2.1.1", "cron-parser": "^4.9.0", "@temporalio/client": "~1.14.1", "zod": "^3.22.4", "zod-to-json-schema": "^3.24.6" }, "peerDependencies": { "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" }, "devDependencies": { "@alga-psa/shared": "*", "typescript": "^5.3.0", "tsup": "^8.0.0" } }