@global-packages/mcp-kit 1.0.0 → 1.0.1
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.
- package/package.json +13 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@global-packages/mcp-kit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Universal MCP Configuration CLI — auto-detect, configure and manage MCP servers across Azure, Confluence, MSSQL, Playwright and more. Works on Windows, macOS and Linux.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,10 +11,14 @@
|
|
|
11
11
|
"build": "tsc && chmod +x dist/index.js",
|
|
12
12
|
"dev": "ts-node src/index.ts",
|
|
13
13
|
"start": "node dist/index.js",
|
|
14
|
-
"
|
|
15
|
-
"prepare": "npm run build",
|
|
14
|
+
"prepare": "npm run build && node dist/postinstall.js",
|
|
16
15
|
"test": "jest",
|
|
17
|
-
"
|
|
16
|
+
"test:watch": "jest --watch",
|
|
17
|
+
"test:coverage": "jest --coverage",
|
|
18
|
+
"lint": "eslint src/**/*.ts",
|
|
19
|
+
"lint:fix": "eslint src/**/*.ts --fix",
|
|
20
|
+
"type-check": "tsc --noEmit",
|
|
21
|
+
"clean": "rm -rf dist coverage .nyc_output"
|
|
18
22
|
},
|
|
19
23
|
"keywords": [
|
|
20
24
|
"mcp",
|
|
@@ -37,8 +41,8 @@
|
|
|
37
41
|
},
|
|
38
42
|
"dependencies": {
|
|
39
43
|
"axios": "^1.6.0",
|
|
40
|
-
"boxen": "^
|
|
41
|
-
"chalk": "^
|
|
44
|
+
"boxen": "^5.1.2",
|
|
45
|
+
"chalk": "^4.1.2",
|
|
42
46
|
"commander": "^12.0.0",
|
|
43
47
|
"dotenv": "^16.4.0",
|
|
44
48
|
"fs-extra": "^11.2.0",
|
|
@@ -59,6 +63,9 @@
|
|
|
59
63
|
"@types/jest": "^29.0.0",
|
|
60
64
|
"@types/node": "^20.0.0",
|
|
61
65
|
"@types/semver": "^7.5.0",
|
|
66
|
+
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
67
|
+
"@typescript-eslint/parser": "^7.0.0",
|
|
68
|
+
"eslint": "^8.56.0",
|
|
62
69
|
"jest": "^29.0.0",
|
|
63
70
|
"ts-jest": "^29.0.0",
|
|
64
71
|
"ts-node": "^10.9.0",
|