-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.69 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.69 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
99
100
101
102
103
104
105
106
107
108
{
"name": "agent-discover",
"version": "1.4.0",
"mcpName": "io.github.keshrath/agent-discover",
"description": "MCP server registry and marketplace — discover, install, activate, and manage MCP tools on demand",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./lib": {
"types": "./dist/lib.d.ts",
"default": "./dist/lib.js"
},
"./dist/lib.js": {
"types": "./dist/lib.d.ts",
"default": "./dist/lib.js"
}
},
"bin": {
"agent-discover": "dist/index.js"
},
"scripts": {
"build": "tsc && node scripts/copy-ui.js",
"start": "node dist/index.js",
"start:server": "node dist/server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e:ui": "playwright test",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run lint && npm run format:check && npm run test",
"bench:run": "tsx bench/runner.ts",
"bench:seed": "tsx bench/fake-tools/seed-registry.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,css,html}": [
"prettier --write"
]
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"agent-common": "^1.1.0",
"better-sqlite3": "12.8.0",
"morphdom": "^2.7.8",
"ws": "8.20.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^10.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.58.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=20.11.0"
},
"keywords": [
"mcp",
"agent",
"registry",
"marketplace",
"model-context-protocol",
"ai-agents",
"claude-code",
"tool-discovery"
],
"files": [
"dist/",
"scripts/",
".claude-plugin/",
".mcp.json",
"agent-desk-plugin.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/keshrath/agent-discover.git"
},
"homepage": "https://github.com/keshrath/agent-discover#readme",
"bugs": {
"url": "https://github.com/keshrath/agent-discover/issues"
}
}