-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.19 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.19 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
{
"name": "featurebase-mcp",
"version": "1.1.1",
"description": "MCP server for Featurebase API - manage posts and comments",
"main": "build/index.js",
"type": "module",
"bin": {
"featurebase-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"featurebase",
"api",
"feedback",
"product-management"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/featurebase-mcp.git"
},
"bugs": {
"url": "https://github.com/yourusername/featurebase-mcp/issues"
},
"homepage": "https://github.com/yourusername/featurebase-mcp#readme",
"engines": {
"node": ">=16.0.0"
},
"files": [
"build/",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.6.2",
"json-mask": "^2.0.0"
},
"devDependencies": {
"@types/json-mask": "^2.0.3",
"@types/node": "^20.10.0",
"tsx": "^4.6.2",
"typescript": "^5.3.2"
}
}