@relayflows/core 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ export {};
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ // Placeholder for @relayflows/core v0.0.1 — npm namespace reservation.
2
+ // Use 0.1.0+ for the real workflow engine; this version exports nothing.
3
+ export {};
package/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "@relayflows/core",
3
+ "version": "0.0.1",
4
+ "description": "Workflow engine and types for Agent Relay workflows (npm namespace placeholder — real release ships as 0.1.0+).",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "default": "./dist/index.js"
13
+ },
14
+ "./schema": {
15
+ "types": "./dist/schema.d.ts",
16
+ "import": "./dist/schema.js",
17
+ "default": "./dist/schema.js"
18
+ },
19
+ "./integrations/github": {
20
+ "types": "./dist/integrations/github.d.ts",
21
+ "import": "./dist/integrations/github.js",
22
+ "default": "./dist/integrations/github.js"
23
+ },
24
+ "./integrations/slack": {
25
+ "types": "./dist/integrations/slack.d.ts",
26
+ "import": "./dist/integrations/slack.js",
27
+ "default": "./dist/integrations/slack.js"
28
+ },
29
+ "./integrations/browser": {
30
+ "types": "./dist/integrations/browser.d.ts",
31
+ "import": "./dist/integrations/browser.js",
32
+ "default": "./dist/integrations/browser.js"
33
+ },
34
+ "./builtin-templates/*": "./dist/builtin-templates/*",
35
+ "./package.json": "./package.json"
36
+ },
37
+ "scripts": {
38
+ "build": "tsc && npm run build:assets",
39
+ "build:assets": "mkdir -p dist/builtin-templates && cp src/builtin-templates/*.yaml dist/builtin-templates/ && cp src/schema.json dist/ 2>/dev/null || true",
40
+ "typecheck": "tsc --noEmit",
41
+ "test": "vitest run"
42
+ },
43
+ "files": [
44
+ "dist"
45
+ ],
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "git+https://github.com/AgentWorkforce/relayflows.git",
52
+ "directory": "packages/core"
53
+ },
54
+ "dependencies": {
55
+ "@agent-relay/browser-primitive": "^7.1.1",
56
+ "@agent-relay/cloud": "^7.1.1",
57
+ "@agent-relay/config": "^7.1.1",
58
+ "@agent-relay/github-primitive": "^7.1.1",
59
+ "@agent-relay/sdk": "^7.1.1",
60
+ "@agent-relay/slack-primitive": "^7.1.1",
61
+ "@relaycast/sdk": "^1.1.0",
62
+ "@sinclair/typebox": "^0.34.48",
63
+ "agent-trajectories": "^0.6.0",
64
+ "chalk": "^4.1.2",
65
+ "ignore": "^7.0.5",
66
+ "listr2": "^10.2.1",
67
+ "yaml": "^2.7.0",
68
+ "zod": "^3.23.8"
69
+ },
70
+ "devDependencies": {
71
+ "@types/node": "^22.10.7",
72
+ "typescript": "^5.7.3",
73
+ "vitest": "^2.1.9"
74
+ }
75
+ }