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
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 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
{
"name": "@smithery/cli",
"version": "1.0.3",
"type": "commonjs",
"private": false,
"homepage": "https://smithery.ai/",
"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"
},
"bin": {
"cli": "dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.3",
"chalk": "^4.1.2",
"inquirer": "^8.2.4",
"inquirer-autocomplete-prompt": "^2.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/inquirer": "^8.2.4",
"@types/inquirer-autocomplete-prompt": "^3.0.3",
"@types/json-schema": "^7.0.15",
"@types/node": "^14.0.0",
"dotenv": "^16.4.7",
"esbuild": "^0.24.0",
"ts-node": "^10.9.1",
"tsx": "^4.19.2",
"typescript": "^5.0.0"
},
"files": [
"dist",
"README.md",
"package.json"
],
"exports": {
".": {
"import": "./dist/index.js"
}
}
}