forked from apify/mcpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.32 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.32 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@apify/mcpc",
"version": "0.3.0",
"description": "Universal command-line client for the Model Context Protocol (MCP).",
"type": "module",
"keywords": [
"Model Context Protocol",
"MCP",
"CLI",
"Code mode",
"LLM",
"AI"
],
"license": "Apache-2.0",
"author": "Jan Curn (@jancurn)",
"repository": {
"type": "git",
"url": "git+https://github.com/apify/mcpc.git"
},
"bugs": {
"url": "https://github.com/apify/mcpc/issues"
},
"homepage": "https://github.com/apify/mcpc",
"bin": {
"mcpc": "bin/mcpc",
"mcpc-bridge": "bin/mcpc-bridge"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"build:readme": "./scripts/update-readme.sh",
"test": "pnpm run build && pnpm run test:unit && ./test/e2e/run.sh --no-build --parallel 8 && ./test/e2e/run.sh --no-build --parallel 8 --runtime bun",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:coverage": "pnpm run test:coverage:unit && pnpm run test:coverage:e2e && pnpm run test:coverage:merge",
"test:coverage:unit": "vitest run --coverage",
"test:coverage:e2e": "./test/e2e/run.sh --coverage",
"test:coverage:merge": "test/coverage/coverage-merge.sh",
"test:e2e": "./test/e2e/run.sh --keep",
"test:e2e:bun": "./test/e2e/run.sh --no-build --runtime bun",
"test:conformance": "pnpm run build && npx -y @modelcontextprotocol/conformance client --command \"node test/conformance/client.mjs\" --scenario initialize",
"lint": "eslint src/**/*.ts && prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "eslint src/**/*.ts --fix && prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"clean": "rm -rf dist",
"prebuild": "pnpm run clean",
"prepublishOnly": "if [ -z \"$MCPC_RELEASE\" ]; then echo '\\n❌ Direct publish is not allowed.\\n Please use: pnpm run release\\n' && exit 1; fi",
"release": "bash scripts/publish.sh",
"release:minor": "bash scripts/publish.sh minor",
"release:major": "bash scripts/publish.sh major",
"release:pre": "bash scripts/publish.sh --pre-release"
},
"dependencies": {
"@inquirer/input": "^5.0.13",
"@inquirer/select": "^5.1.5",
"@modelcontextprotocol/sdk": "^1.29.0",
"@napi-rs/keyring": "^1.3.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"ora": "^9.4.0",
"proper-lockfile": "^4.1.2",
"qrcode-terminal": "^0.12.0",
"undici": "^7.25.0",
"uuid": "^14.0.0",
"viem": "^2.50.4"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/proper-lockfile": "^4.1.4",
"@types/qrcode-terminal": "^0.12.2",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "8.59.4",
"@typescript-eslint/parser": "8.59.4",
"@vitest/coverage-v8": "4.1.7",
"c8": "^11.0.0",
"doctoc": "^2.4.1",
"eslint": "^8.57.1",
"markdown-link-check": "^3.14.2",
"nyc": "^18.0.0",
"prettier": "^3.8.3",
"proxy-chain": "^3.0.0",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vitest": "4.1.7"
},
"packageManager": "pnpm@10.33.4",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "10.33.4",
"onFail": "warn"
}
}
}