@fractalizer/mcp-cli 0.2.2 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +16 -5
package/README.md CHANGED
@@ -435,4 +435,4 @@ registry.register(connector);
435
435
 
436
436
  ## 📝 Лицензия
437
437
 
438
- MIT
438
+ PolyForm Shield License 1.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fractalizer/mcp-cli",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "Generic CLI for MCP server connection management",
5
5
  "keywords": [
6
6
  "mcp",
@@ -9,7 +9,16 @@
9
9
  "connector",
10
10
  "command-line"
11
11
  ],
12
- "license": "MIT",
12
+ "homepage": "https://github.com/FractalizeR/mcp_servers/tree/main/packages/framework/cli#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/FractalizeR/mcp_servers/issues"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/FractalizeR/mcp_servers.git",
19
+ "directory": "packages/framework/cli"
20
+ },
21
+ "license": "PolyForm-Shield-1.0.0",
13
22
  "author": "Fractalizer",
14
23
  "type": "module",
15
24
  "exports": {
@@ -39,8 +48,7 @@
39
48
  "types": "./dist/index.d.ts",
40
49
  "files": [
41
50
  "dist",
42
- "README.md",
43
- "CHANGELOG.md"
51
+ "README.md"
44
52
  ],
45
53
  "scripts": {
46
54
  "build": "tsc -b && tsc-alias",
@@ -65,7 +73,7 @@
65
73
  "validate:quiet": "npm run lint:quiet && npm run typecheck && npm run test:quiet && npm run cpd:quiet"
66
74
  },
67
75
  "dependencies": {
68
- "@fractalizer/mcp-infrastructure": "^0.2.2",
76
+ "@fractalizer/mcp-infrastructure": "^0.2.4",
69
77
  "@iarna/toml": "^2.2.5",
70
78
  "chalk": "^5.6.2",
71
79
  "commander": "^14.0.2",
@@ -75,6 +83,9 @@
75
83
  "devDependencies": {
76
84
  "@types/inquirer": "^9.0.9"
77
85
  },
86
+ "engines": {
87
+ "node": ">=22.0.0"
88
+ },
78
89
  "publishConfig": {
79
90
  "access": "public"
80
91
  }