forked from laurentenhoor/devclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.35 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.35 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
{
"name": "@laurentenhoor/devclaw",
"version": "1.6.10",
"description": "Multi-project dev/qa pipeline orchestration for OpenClaw",
"type": "module",
"license": "MIT",
"author": "Lauren ten Hoor <laurentenhoor@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/laurentenhoor/devclaw.git"
},
"bugs": {
"url": "https://github.com/laurentenhoor/devclaw/issues"
},
"homepage": "https://github.com/laurentenhoor/devclaw#readme",
"keywords": [
"openclaw",
"openclaw-plugin",
"dev-pipeline",
"orchestration",
"gitlab",
"github",
"multi-project"
],
"engines": {
"node": ">=20"
},
"openclaw": {
"extensions": [
"./dist/index.js"
]
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/",
"defaults/",
"roles/",
"docs/",
"openclaw.plugin.json"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node build.mjs",
"check": "tsc --noEmit",
"watch": "tsc --noEmit --watch",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"openclaw": "^2026.3.2"
},
"devDependencies": {
"@types/node": "^25.2.3",
"cockatiel": "^3.2.1",
"esbuild": "^0.25.0",
"typescript": "^5.9.3",
"yaml": "^2.8.2",
"unique-names-generator": "^4.7.1",
"zod": "^4.3.6"
}
}