@smithery/cli 1.3.0 → 1.4.0
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/dist/index.js +25720 -41102
- package/package.json +12 -11
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smithery/cli",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"type": "
|
|
3
|
+
"version": "1.4.0",
|
|
4
|
+
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"homepage": "https://smithery.ai/",
|
|
7
7
|
"repository": {
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "tsc && node build.mjs && shx chmod +x dist/index.js",
|
|
15
15
|
"start": "node dist/index.js",
|
|
16
|
-
"test:list": "
|
|
17
|
-
"test:install": "
|
|
18
|
-
"test:installed": "
|
|
19
|
-
"extract": "
|
|
20
|
-
"test:uninstall": "
|
|
16
|
+
"test:list": "tsx src/index.ts list",
|
|
17
|
+
"test:install": "tsx src/index.ts install",
|
|
18
|
+
"test:installed": "tsx src/index.ts installed",
|
|
19
|
+
"extract": "tsx src/extractors/modelcontextprotocol-extractor.ts",
|
|
20
|
+
"test:uninstall": "tsx src/index.ts uninstall",
|
|
21
21
|
"prepare": "npm run build",
|
|
22
22
|
"check": "npx @biomejs/biome check --write --unsafe",
|
|
23
23
|
"test": "vitest run",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"smithery": "dist/index.js"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@modelcontextprotocol/sdk": "^1.18.
|
|
30
|
+
"@modelcontextprotocol/sdk": "^1.18.1",
|
|
31
31
|
"@ngrok/ngrok": "^1.5.1",
|
|
32
|
-
"@smithery/registry": "^0.
|
|
33
|
-
"@smithery/sdk": "^1.6.
|
|
32
|
+
"@smithery/registry": "^0.4.1",
|
|
33
|
+
"@smithery/sdk": "^1.6.4",
|
|
34
34
|
"chalk": "^4.1.2",
|
|
35
35
|
"commander": "^14.0.0",
|
|
36
36
|
"cors": "^2.8.5",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@biomejs/biome": "^2.2.4",
|
|
52
|
+
"@types/bun": "^1.2.22",
|
|
52
53
|
"@types/cors": "^2.8.18",
|
|
53
54
|
"@types/express": "^5.0.2",
|
|
54
55
|
"@types/inquirer": "^8.2.4",
|
|
@@ -56,7 +57,7 @@
|
|
|
56
57
|
"@types/json-schema": "^7.0.15",
|
|
57
58
|
"@types/lodash": "^4.17.14",
|
|
58
59
|
"@types/node": "^20.19.11",
|
|
59
|
-
"dotenv": "^
|
|
60
|
+
"dotenv": "^17.2.2",
|
|
60
61
|
"ts-node": "^10.9.1",
|
|
61
62
|
"tsx": "^4.19.2",
|
|
62
63
|
"typescript": "^5.0.0",
|