-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1014 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 1014 Bytes
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
{
"name": "@nano-step/skill-manager",
"version": "5.7.1",
"description": "CLI tool that installs and manages AI agent skills, MCP tool routing, and workflow configurations.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"skill-manager": "bin/cli.js"
},
"files": [
"bin",
"dist",
"skills",
"private-catalog.json"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"nano-step",
"opencode",
"skill",
"skill-manager",
"mcp",
"model-context-protocol",
"ai",
"llm",
"cli"
],
"author": "nano-step",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nano-step/skill-manager"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.30",
"typescript": "^5.4.5"
}
}