-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.32 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.32 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
{
"name": "@insforge/mcp",
"version": "1.2.10",
"description": "MCP (Model Context Protocol) server for Insforge backend-as-a-service",
"mcpName": "io.github.InsForge/insforge-mcp",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp": "./dist/index.js",
"insforge-mcp": "./dist/index.js",
"insforge-mcp-server": "./dist/http-server.js"
},
"scripts": {
"dev:stdio": "tsx watch src/stdio/index.ts",
"dev:http": "tsx watch src/http/server.ts",
"build": "tsup",
"prepublishOnly": "npm run build",
"test": "vitest run --passWithNoTests",
"test:unit": "vitest run --passWithNoTests",
"test:integration:real": "vitest run src/integration/real-project.test.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"format": "prettier --write ."
},
"keywords": [
"mcp",
"model-context-protocol",
"insforge",
"backend-as-a-service"
],
"author": "Insforge",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/InsForge/insforge-mcp.git"
},
"homepage": "https://github.com/InsForge/insforge-mcp#readme",
"bugs": {
"url": "https://github.com/InsForge/insforge-mcp/issues"
},
"files": [
"dist",
"mcp.json",
"server.json"
],
"dependencies": {
"@insforge/shared-schemas": "1.1.49",
"@modelcontextprotocol/sdk": "^1.27.1",
"archiver": "^7.0.1",
"commander": "^14.0.0",
"dotenv": "^17.3.1",
"express": "^5.1.0",
"form-data": "^4.0.4",
"ioredis": "^5.9.3",
"mixpanel": "^0.18.1",
"node-fetch": "^3.3.2",
"zod": "^3.23.8"
},
"overrides": {
"brace-expansion": "^5.0.5",
"glob": "^10.5.0",
"minimatch": "^9.0.7",
"@hono/node-server": "^1.19.13",
"hono": "^4.12.12",
"lodash": "^4.18.0",
"rollup": "^4.59.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/archiver": "^7.0.0",
"@types/express": "^5.0.3",
"@types/node": "^20.10.5",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"rimraf": "^5.0.5",
"tsup": "^8.5.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.57.1",
"vite": "^8.0.5",
"vitest": "^4.1.0"
}
}