-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 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
{
"name": "@effectorhq/skill-mcp",
"version": "0.1.0",
"description": "Compiler and MCP server that turns SKILL.md capability manifests into cross-runtime AI agent tools",
"type": "module",
"main": "src/index.js",
"bin": {
"skill-mcp": "bin/skill-mcp.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node --test tests/**/*.test.js",
"lint": "node --check src/*.js",
"build": "echo 'No build step — pure ESM'",
"start": "node bin/skill-mcp.js serve ./skills",
"prepublishOnly": "npm test && npm run lint"
},
"keywords": [
"ai-agent",
"mcp",
"compiler",
"cross-runtime",
"effector",
"openai",
"langchain",
"model-context-protocol"
],
"dependencies": {
"@effectorhq/core": "^1.0.0"
},
"author": "effectorHQ Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/effectorHQ/openclaw-mcp.git"
},
"bugs": {
"url": "https://github.com/effectorHQ/openclaw-mcp/issues"
},
"homepage": "https://github.com/effectorHQ/openclaw-mcp#readme",
"files": [
"bin/",
"src/",
"LICENSE",
"README.md"
]
}