Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
140 lines
3.5 KiB
JSON
140 lines
3.5 KiB
JSON
{
|
|
"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"
|
|
}
|
|
}
|