|
1 | 1 | { |
2 | | - "name": "install-mcp", |
3 | | - "version": "1.6.1", |
4 | | - "description": "A CLI tool to install and manage MCP servers.", |
5 | | - "bin": { |
6 | | - "install-mcp": "./bin/run" |
7 | | - }, |
8 | | - "directories": { |
9 | | - "lib": "src", |
10 | | - "bin": "bin" |
11 | | - }, |
12 | | - "files": [ |
13 | | - "dist", |
14 | | - "bin" |
15 | | - ], |
16 | | - "repository": { |
17 | | - "type": "git", |
18 | | - "url": "git+ssh://[email protected]/supermemoryai/install-mcp.git" |
19 | | - }, |
20 | | - "scripts": { |
21 | | - "build": "tsup-node", |
22 | | - "build:watch": "tsup-node --watch", |
23 | | - "clean": "rimraf dist", |
24 | | - "commit": "cz", |
25 | | - "commitlint": "commitlint --edit", |
26 | | - "compile": "tsc", |
27 | | - "format": "prettier . --check", |
28 | | - "format:fix": "prettier . --write", |
29 | | - "lint": "eslint .", |
30 | | - "lint:fix": "eslint . --fix", |
31 | | - "start": "ts-node ./bin/run.ts", |
32 | | - "start:node": "node ./bin/run", |
33 | | - "test": "jest", |
34 | | - "test:watch": "jest --watchAll", |
35 | | - "prepare": "husky", |
36 | | - "release": "semantic-release" |
37 | | - }, |
38 | | - "keywords": [ |
39 | | - "typescript", |
40 | | - "starter", |
41 | | - "cli", |
42 | | - "mcp" |
43 | | - ], |
44 | | - "author": "Dhravya Shah <[email protected]>", |
45 | | - "license": "MIT", |
46 | | - "devDependencies": { |
47 | | - "@commitlint/cli": "^18.6.1", |
48 | | - "@commitlint/config-conventional": "^18.6.3", |
49 | | - "@jest/globals": "^29.7.0", |
50 | | - "@tsconfig/node20": "^20.1.4", |
51 | | - "@types/jest": "^29.5.12", |
52 | | - "@types/js-yaml": "^4.0.9", |
53 | | - "@types/node": "^20.12.12", |
54 | | - "@types/prompts": "^2.4.9", |
55 | | - "@types/signale": "^1.4.7", |
56 | | - "@types/yargs": "^17.0.32", |
57 | | - "@typescript-eslint/eslint-plugin": "^6.21.0", |
58 | | - "@typescript-eslint/parser": "^6.21.0", |
59 | | - "commitizen": "^4.3.0", |
60 | | - "cz-conventional-changelog": "^3.3.0", |
61 | | - "eslint": "^8.57.0", |
62 | | - "eslint-config-prettier": "^9.1.0", |
63 | | - "eslint-plugin-jest": "^27.9.0", |
64 | | - "eslint-plugin-prettier": "^5.1.3", |
65 | | - "eslint-plugin-unused-imports": "^3.2.0", |
66 | | - "husky": "^9.0.11", |
67 | | - "jest": "^29.7.0", |
68 | | - "prettier": "^3.2.5", |
69 | | - "rimraf": "^5.0.7", |
70 | | - "semantic-release": "^23.1.1", |
71 | | - "ts-jest": "^29.1.4", |
72 | | - "ts-node": "^10.9.2", |
73 | | - "tsup": "^8.0.2", |
74 | | - "typescript": "^5.4.5" |
75 | | - }, |
76 | | - "dependencies": { |
77 | | - "consola": "^3.2.3", |
78 | | - "dotenv": "^16.4.5", |
79 | | - "giget": "^1.2.3", |
80 | | - "js-yaml": "^4.1.0", |
81 | | - "picocolors": "^1.0.1", |
82 | | - "yargs": "^17.7.2" |
83 | | - }, |
84 | | - "config": { |
85 | | - "commitizen": { |
86 | | - "path": "cz-conventional-changelog" |
87 | | - } |
88 | | - }, |
89 | | - "packageManager": "[email protected]" |
| 2 | + "name": "install-mcp", |
| 3 | + "version": "1.7.1", |
| 4 | + "description": "A CLI tool to install and manage MCP servers.", |
| 5 | + "bin": { |
| 6 | + "install-mcp": "./bin/run" |
| 7 | + }, |
| 8 | + "directories": { |
| 9 | + "lib": "src", |
| 10 | + "bin": "bin" |
| 11 | + }, |
| 12 | + "files": [ |
| 13 | + "dist", |
| 14 | + "bin" |
| 15 | + ], |
| 16 | + "repository": { |
| 17 | + "type": "git", |
| 18 | + "url": "git+ssh://[email protected]/supermemoryai/install-mcp.git" |
| 19 | + }, |
| 20 | + "scripts": { |
| 21 | + "build": "tsup-node", |
| 22 | + "build:watch": "tsup-node --watch", |
| 23 | + "clean": "rimraf dist", |
| 24 | + "commit": "cz", |
| 25 | + "commitlint": "commitlint --edit", |
| 26 | + "compile": "tsc", |
| 27 | + "format": "prettier . --check", |
| 28 | + "format:fix": "prettier . --write", |
| 29 | + "lint": "eslint .", |
| 30 | + "lint:fix": "eslint . --fix", |
| 31 | + "start": "ts-node ./bin/run.ts", |
| 32 | + "start:node": "node ./bin/run", |
| 33 | + "test": "jest", |
| 34 | + "test:watch": "jest --watchAll", |
| 35 | + "prepare": "husky", |
| 36 | + "release": "semantic-release" |
| 37 | + }, |
| 38 | + "keywords": [ |
| 39 | + "typescript", |
| 40 | + "starter", |
| 41 | + "cli", |
| 42 | + "mcp" |
| 43 | + ], |
| 44 | + "author": "Dhravya Shah <[email protected]>", |
| 45 | + "license": "MIT", |
| 46 | + "devDependencies": { |
| 47 | + "@commitlint/cli": "^18.6.1", |
| 48 | + "@commitlint/config-conventional": "^18.6.3", |
| 49 | + "@jest/globals": "^29.7.0", |
| 50 | + "@tsconfig/node20": "^20.1.6", |
| 51 | + "@types/jest": "^29.5.14", |
| 52 | + "@types/js-yaml": "^4.0.9", |
| 53 | + "@types/node": "^20.19.8", |
| 54 | + "@types/prompts": "^2.4.9", |
| 55 | + "@types/signale": "^1.4.7", |
| 56 | + "@types/yargs": "^17.0.33", |
| 57 | + "@typescript-eslint/eslint-plugin": "^6.21.0", |
| 58 | + "@typescript-eslint/parser": "^6.21.0", |
| 59 | + "commitizen": "^4.3.1", |
| 60 | + "cz-conventional-changelog": "^3.3.0", |
| 61 | + "eslint": "^8.57.1", |
| 62 | + "eslint-config-prettier": "^9.1.2", |
| 63 | + "eslint-plugin-jest": "^27.9.0", |
| 64 | + "eslint-plugin-prettier": "^5.5.3", |
| 65 | + "eslint-plugin-unused-imports": "^3.2.0", |
| 66 | + "husky": "^9.1.7", |
| 67 | + "jest": "^29.7.0", |
| 68 | + "prettier": "^3.6.2", |
| 69 | + "rimraf": "^5.0.10", |
| 70 | + "semantic-release": "^23.1.1", |
| 71 | + "ts-jest": "^29.4.0", |
| 72 | + "ts-node": "^10.9.2", |
| 73 | + "tsup": "^8.5.0", |
| 74 | + "typescript": "^5.8.3" |
| 75 | + }, |
| 76 | + "dependencies": { |
| 77 | + "consola": "^3.4.2", |
| 78 | + "dotenv": "^16.6.1", |
| 79 | + "giget": "^1.2.5", |
| 80 | + "js-yaml": "^4.1.0", |
| 81 | + "picocolors": "^1.1.1", |
| 82 | + "yargs": "^17.7.2" |
| 83 | + }, |
| 84 | + "pnpm": { |
| 85 | + "overrides": { |
| 86 | + "tmp": "^0.2.4" |
| 87 | + } |
| 88 | + }, |
| 89 | + "config": { |
| 90 | + "commitizen": { |
| 91 | + "path": "cz-conventional-changelog" |
| 92 | + } |
| 93 | + }, |
| 94 | + "packageManager": "[email protected]" |
90 | 95 | } |
0 commit comments