forked from smithery-ai/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.06 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.06 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@smithery/cli",
"version": "1.2.22",
"type": "commonjs",
"private": false,
"homepage": "https://smithery.ai/",
"repository": {
"type": "git",
"url": "git+https://github.com/smithery-ai/cli.git"
},
"description": "A NPX command to install and list Model Context Protocols from Smithery",
"main": "dist/index.js",
"scripts": {
"build": "tsc && node build.mjs && chmod +x dist/index.js",
"start": "node dist/index.js",
"test:list": "node --loader ts-node/esm src/index.ts list",
"test:install": "node --loader ts-node/esm src/index.ts install",
"test:installed": "node --loader ts-node/esm src/index.ts installed",
"extract": "node --loader ts-node/esm src/extractors/modelcontextprotocol-extractor.ts",
"test:uninstall": "node --loader ts-node/esm src/index.ts uninstall",
"prepare": "npm run build",
"check": "npx @biomejs/biome check --write --unsafe",
"test": "vitest run",
"test:watch": "vitest"
},
"bin": {
"smithery": "dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"@ngrok/ngrok": "^1.5.1",
"@smithery/registry": "^0.3.7",
"@smithery/sdk": "^1.5.6",
"@types/uuid": "^10.0.0",
"chalk": "^4.1.2",
"commander": "^14.0.0",
"cors": "^2.8.5",
"cross-fetch": "^4.1.0",
"esbuild": "^0.25.5",
"express": "^5.1.0",
"inquirer": "^8.2.4",
"inquirer-autocomplete-prompt": "^2.0.0",
"lodash": "^4.17.21",
"ora": "^8.2.0",
"uuid": "^11.1.0",
"uuidv7": "^1.0.2",
"yaml": "^2.3.4"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.2",
"@types/inquirer": "^8.2.4",
"@types/inquirer-autocomplete-prompt": "^3.0.3",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.14",
"@types/node": "^20.19.11",
"dotenv": "^16.4.7",
"ts-node": "^10.9.1",
"tsx": "^4.19.2",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"files": [
"dist",
"README.md",
"package.json"
],
"exports": {
".": {
"import": "./dist/index.js"
}
},
"engines": {
"node": ">=18.0.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.9"
}
}