-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.23 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.23 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
{
"name": "mcpmarket",
"version": "1.0.0",
"description": "A collection of Model Context Protocol (MCP) servers for LLM integration",
"type": "module",
"private": true,
"workspaces": [
"packages/*",
"!**/test/**"
],
"engines": {
"node": ">=16",
"pnpm": ">=8"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "pnpm -r test",
"build": "pnpm -r build",
"clean": "pnpm -r clean",
"list": "pnpm list --recursive",
"publish:all": "pnpm publish -r changeset publish",
"publish:single": "node scripts/publish-single.js",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && pnpm publish:all",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lint:check": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CherryHQ/mcpmarket.git"
},
"keywords": [
"mcp",
"server"
],
"author": "CherryHQ",
"license": "MIT",
"bugs": {
"url": "https://github.com/CherryHQ/mcpmarket/issues"
},
"homepage": "https://github.com/CherryHQ/mcpmarket#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@types/chai": "^5.2.1",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.24",
"@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"chai": "^5.2.0",
"cross-env": "^7.0.3",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "4.2.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^8.0.0",
"lint-staged": "^15.5.0",
"mocha": "^11.1.0",
"prettier": "^3.5.3",
"sinon": "^20.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"lint-staged": {
"packages/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"packageManager": "pnpm@10.4.1"
}