-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.41 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.41 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": "brainfish-mcp",
"version": "1.0.0",
"description": "MCP server for Brainfish knowledge base management. Features include document search, creation, suggestions workflow, collection management, and AI-powered content generation.",
"type": "module",
"mcpName": "io.github.brainfish/brainfish-mcp-server",
"bin": {
"brainfish-mcp": "dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "next build",
"dev": "next dev --port 3002",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"license": "MIT",
"dependencies": {
"@brainfish-ai/components": "^0.27.1",
"@opentelemetry/api": "^1.9.1",
"@phosphor-icons/react": "^2.1.7",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/vite": "^4.2.4",
"@vercel/otel": "^2.1.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.4.2",
"jszip": "^3.10.1",
"next": "^16.2.4",
"path-to-regexp": "^8.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^4.2.4",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"usehooks-ts": "^3.1.1",
"zod": "^4.3.6"
},
"overrides": {
"postcss": ">=8.5.10",
"js-cookie": ">=3.0.6",
"prismjs": ">=1.30.0"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"mcp",
"brainfish",
"knowledge-base",
"document-management",
"ai-suggestions",
"content-management"
],
"repository": {
"type": "git",
"url": "git+https://github.com/brainfish-ai/brainfish-mcp-server.git"
},
"author": "brainfish",
"bugs": {
"url": "https://github.com/brainfish-ai/brainfish-mcp-server/issues"
},
"homepage": "https://github.com/brainfish-ai/brainfish-mcp-server#readme",
"devDependencies": {
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.3.1",
"@types/node": "^24.3.1",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jsdom": "^26.1.0",
"prettier": "^3.2.5",
"vitest": "^4.1.5"
}
}