-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
65 lines (65 loc) · 2.08 KB
/
package.json
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
{
"name": "@michaellatman/mcp-get",
"version": "1.0.56",
"description": "A NPX command to install and list packages",
"main": "dist/index.js",
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"start": "node dist/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.mjs",
"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",
"test:update": "node --loader ts-node/esm src/index.ts update",
"extract": "node --loader ts-node/esm src/extractors/modelcontextprotocol-extractor.ts",
"test:uninstall": "node --loader ts-node/esm src/index.ts uninstall",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"publish:npm": "npm run build && npm publish --access public",
"pr-check": "node src/scripts/pr-check.js",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.mjs --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.mjs --coverage",
"prepare": "npm run build"
},
"bin": {
"mcp-get": "dist/index.js"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@octokit/rest": "^18.12.0",
"@types/iarna__toml": "^2.0.5",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"dotenv": "^16.4.5",
"fuzzy": "^0.1.3",
"inquirer": "^8.2.4",
"inquirer-autocomplete-prompt": "^2.0.0",
"open": "^10.1.0",
"string-width": "^4.2.3",
"typescript": "^4.0.0"
},
"devDependencies": {
"@types/inquirer": "^8.2.4",
"@types/inquirer-autocomplete-prompt": "^3.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^14.18.63",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1"
},
"files": [
"dist",
"README.md",
"package.json",
"packages",
"LICENSE"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"license": "MIT"
}