-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.79 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.79 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@clawnify/clawflow",
"version": "0.9.6",
"description": "The n8n for agents. A declarative, AI-native workflow format that agents can read, write, and run.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./core": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "node --import tsx --test tests/*.test.ts",
"lint": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"compat": {
"pluginApi": ">=2026.3.22",
"minGatewayVersion": ">=2026.3.22"
},
"build": {
"openclawVersion": "2026.3.24"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map",
"dist/**/*.d.ts.map",
"index.ts",
"src/**/*.ts",
"skills/**/*",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"keywords": [
"openclaw",
"openclaw-plugin",
"workflow",
"agent",
"ai",
"cloudflare",
"orchestration",
"declarative"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"peerDependencies": {
"openclaw": "*"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^5.5.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clawnify/clawflow.git"
},
"homepage": "https://github.com/clawnify/clawflow#readme",
"bugs": {
"url": "https://github.com/clawnify/clawflow/issues"
}
}