-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.67 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.67 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": "mcp-forge",
"description": "MCP FORGE is a scaffold project designed to help developers quickly build applications using the Model Context Protocol (MCP). It provides a solid foundation with essential features and best practices, allowing you to focus on creating innovative solutions that leverage the power of MCP.",
"author": "Pouiiro (Ouail Bni)",
"license": "MIT",
"version": "1.0.0",
"type": "module",
"bin": {
"mcp-forge": "./build/index.js"
},
"scripts": {
"build": "tsc -p .",
"start": "pnpm run build && node build/index.js",
"dev": "tsx watch src/index.ts",
"test": "vitest",
"test:ui": "vitest --ui --coverage.enabled=true",
"test:coverage": "vitest --coverage",
"test:run": "vitest run",
"format": "biome format . --write",
"lint": "biome lint . --fix --unsafe",
"check": "tsc --noEmit && biome check .",
"prepare": "husky"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.0",
"better-sqlite3": "^12.4.1",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"cors": "^2.8.5",
"express": "^5.1.0",
"ora": "^9.0.0",
"uuid": "^13.0.0",
"zod": "3.25.30"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.7.1",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"husky": "^9.0.0",
"supertest": "^7.1.4",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.6.2",
"vitest": "^3.2.4"
}
}