-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.24 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.24 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
{
"name": "@apify/mcpc",
"version": "0.4.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": ">=22.12.0"
},
"scripts": {
"build": "tsc && node scripts/bundle-viem.mjs",
"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 && prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "eslint src --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": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@napi-rs/keyring": "^1.3.0",
"chalk": "^5.6.2",
"commander": "^15.0.0",
"ora": "^9.4.1",
"proper-lockfile": "^4.1.2",
"qrcode-terminal": "^0.12.0",
"undici": "^7.28.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.28.1",
"@types/node": "^25.9.4",
"@types/proper-lockfile": "^4.1.4",
"@types/qrcode-terminal": "^0.12.2",
"@vitest/coverage-v8": "4.1.9",
"c8": "^11.0.0",
"doctoc": "^2.5.0",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"markdown-link-check": "^3.14.2",
"nyc": "^18.0.0",
"prettier": "^3.9.4",
"proxy-chain": "^3.0.0",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"viem": "^2.54.3",
"vitest": "4.1.9"
},
"packageManager": "pnpm@10.33.4",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "10.33.4",
"onFail": "warn"
}
}
}