-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2 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
{
"name": "openclaw-mcp",
"version": "1.6.0",
"mcpName": "io.github.freema/openclaw-mcp",
"description": "Model Context Protocol (MCP) server for OpenClaw AI assistant integration",
"author": "Tomáš Grasl <https://www.tomasgrasl.cz/>",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"openclaw-mcp": "./dist/index.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup",
"start": "node dist/index.js",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"check": "npm run lint:fix && npm run typecheck",
"check:all": "npm run check && npm run test:run && npm run build",
"prepublishOnly": "npm run clean && npm run build",
"test": "vitest",
"test:run": "vitest run"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"openclaw",
"ai-assistant",
"claude",
"ai-agent"
],
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"tsup": "^8.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^2.0.0"
},
"files": [
"dist",
"docs",
"README.md",
"LICENSE",
"plugins"
],
"homepage": "https://github.com/freema/openclaw-mcp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/freema/openclaw-mcp.git"
},
"publishConfig": {
"access": "public"
}
}