This repository was archived by the owner on Jul 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.46 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
{
"name": "clicp",
"version": "0.1.0",
"description": "Command Line Interface Context Protocol - A TypeScript CLI for interacting with Model Context Protocol (MCP) servers",
"main": "dist/index.js",
"bin": "dist/cli.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "jest",
"lint": "prettier --check .",
"format": "prettier --write .",
"prepare": "husky install",
"precommit": "lint-staged"
},
"keywords": [
"cli",
"mcp",
"model-context-protocol",
"typescript",
"ai",
"tools"
],
"author": "Codegen",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/server-github": "^2025.4.8",
"@modelcontextprotocol/server-postgres": "^0.6.2",
"@types/inquirer": "^9.0.7",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"inquirer": "^8.2.6"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-util": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.0"
},
"lint-staged": {
"*.{ts,js,json,md}": [
"prettier --write"
],
"*.ts": [
"tsc --noEmit"
]
},
"engines": {
"node": ">=16.0.0"
},
"packageManager": "yarn@4.9.2+sha512.1fc009bc09d13cfd0e19efa44cbfc2b9cf6ca61482725eb35bbc5e257e093ebf4130db6dfe15d604ff4b79efd8e1e8e99b25fa7d0a6197c9f9826358d4d65c3c"
}