-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.53 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.53 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
{
"name": "@useconductor/conductor",
"version": "2.2.0",
"description": "The AI Tool Hub — One MCP server. 255 tools. Every AI agent.",
"main": "dist/index.js",
"bin": {
"conductor": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/cli/index.js && cp src/dashboard/index.html dist/dashboard/index.html",
"dev": "tsx watch src/cli/index.ts",
"start": "node dist/cli/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"publish": "npm run build && npm publish",
"publish:beta": "npm run build && npm publish --tag beta"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=20.12.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"ai-tools",
"tool-hub",
"claude",
"cursor",
"cline",
"automation",
"plugin-hub"
],
"author": "Alexander Wondwossen",
"license": "Apache-2.0",
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"@octokit/rest": "^22.0.1",
"@slack/bolt": "^4.6.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"glob": "^13.0.6",
"googleapis": "^171.4.0",
"inquirer": "^13.2.5",
"mathjs": "^15.1.1",
"open": "^11.0.0",
"ora": "^9.3.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"redis": "^5.11.0",
"spotify-web-api-node": "^5.0.2",
"sql.js": "^1.14.0",
"systeminformation": "^5.31.0",
"telegraf": "^4.16.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/inquirer": "^9.0.9",
"@types/node": "^25.2.3",
"@types/spotify-web-api-node": "^5.0.11",
"@types/sql.js": "^1.4.9",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"optionalDependencies": {
"@anthropic-ai/sdk": "^0.86.1",
"@google/generative-ai": "^0.24.1",
"openai": "^6.34.0"
}
}