-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "openclaw-workflow",
"version": "1.0.0",
"description": "OpenClaw plugin for YAML/JSON-driven workflow orchestration with dependency management, parallel execution, retry logic, and output gates",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"openclaw.plugin.json",
"README.md",
"examples"
],
"openclaw": {
"extensions": [
"./src/index.ts"
],
"runtimeExtensions": [
"./dist/index.js"
],
"hooks": {},
"compat": {
"minVersion": "0.6.0"
},
"build": {
"command": "npm run build",
"output": "dist"
}
},
"keywords": [
"openclaw",
"openclaw-plugin",
"workflow",
"orchestration",
"pipeline",
"subagent",
"automation"
],
"author": "OpenClaw Contributors",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@bufbuild/cel": "^0.4.0",
"ajv": "^8.17.1",
"@sinclair/typebox": "^0.34.38",
"js-yaml": "^4.1.0",
"ioredis": "^5.10.1",
"mcporter": "^0.9.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.3",
"tsx": "^4.21.0",
"typescript": "^5.8.3"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "npm run build && node --test \"tests/**/*.test.js\"",
"test:watch": "node --test --watch \"tests/**/*.test.js\"",
"lint": "tsc -p tsconfig.json --noEmit",
"check": "npm run typecheck && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/adnahmed/openclaw-workflow.git"
}
}