-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1 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
{
"name": "skillnet-mcp",
"version": "1.2.0",
"description": "Model Context Protocol (MCP) server wrapping the official SkillNet AI CLI for integrating AI Agent Skills seamlessly.",
"main": "index.js",
"bin": {
"skillnet-mcp": "./index.js"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CycleChain/skillnet-mcp.git"
},
"keywords": [
"mcp",
"skillnet",
"ai",
"agents",
"model-context-protocol"
],
"author": {
"name": "Fatih Mert Doğancan",
"email": "fatih.dogancan@cyclechain.io",
"url": "https://cyclechain.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/CycleChain/skillnet-mcp/issues"
},
"homepage": "https://github.com/CycleChain/skillnet-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"jest": "^30.2.0"
},
"type": "module"
}