-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.21 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.21 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
{
"name": "@apify/mcpc",
"version": "0.2.6",
"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": "npm run build && npm run test:unit && ./test/e2e/run.sh --no-build --parallel 8 && ./test/e2e/run.sh --no-build --parallel 8 --runtime bun",
"test:unit": "jest",
"test:watch": "jest --watch",
"test:coverage": "npm run test:coverage:unit && npm run test:coverage:e2e && npm run test:coverage:merge",
"test:coverage:unit": "jest --coverage && find test/coverage/unit -name '*.html' -exec sed -i '' -e 's/Code coverage report for All files/mcpc Coverage (Unit Tests)/g' -e 's/<h1>All files<\\/h1>/<h1>Unit Test Coverage<\\/h1>/g' {} \\;",
"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",
"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": "npm run clean",
"prepublishOnly": "if [ -z \"$MCPC_RELEASE\" ]; then echo '\\n❌ Direct npm publish is not allowed.\\n Please use: npm 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.3",
"@inquirer/select": "^5.0.3",
"@modelcontextprotocol/sdk": "^1.25.1",
"@napi-rs/keyring": "^1.2.0",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"ora": "^9.0.0",
"proper-lockfile": "^4.1.2",
"qrcode-terminal": "^0.12.0",
"undici": "^7.22.0",
"uuid": "^13.0.0",
"viem": "^2.46.3"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@types/proper-lockfile": "^4.1.4",
"@types/qrcode-terminal": "^0.12.2",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"c8": "^11.0.0",
"doctoc": "^2.2.1",
"eslint": "^8.57.1",
"jest": "^30.2.0",
"markdown-link-check": "^3.14.2",
"nyc": "^18.0.0",
"prettier": "^3.7.4",
"proxy-chain": "^2.7.1",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}