forked from Enderfga/claw-orchestrator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.9 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.9 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
{
"name": "@enderfga/openclaw-claude-code",
"version": "2.12.1",
"description": "OpenClaw plugin — full Claude Code SDK with session management, agent teams, multi-model proxy, and plan mode",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"bin": {
"claude-code-skill": "./dist/bin/cli.js"
},
"openclaw": {
"extensions": [
"./dist/src/index.js"
],
"hooks": {}
},
"files": [
"dist/",
"configs/",
"skills/",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ bin/",
"lint:fix": "eslint src/ bin/ --fix",
"format": "prettier --write 'src/**/*.ts' 'bin/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'bin/**/*.ts'",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"openclaw",
"plugin",
"claude-code",
"claude",
"ai-agent",
"coding-agent",
"agent-teams",
"session-management",
"mcp"
],
"author": "enderfga",
"repository": {
"type": "git",
"url": "git+https://github.com/Enderfga/openclaw-claude-code.git"
},
"homepage": "https://github.com/Enderfga/openclaw-claude-code#readme",
"bugs": {
"url": "https://github.com/Enderfga/openclaw-claude-code/issues"
},
"license": "MIT",
"dependencies": {
"commander": "^12.1.0"
},
"peerDependencies": {
"openclaw": ">=2026.3.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^3.1.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^10.1.0",
"prettier": "^3.5.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.20.0",
"vitest": "^3.1.0"
}
}