-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.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
{
"name": "mcp-typescript-template",
"version": "1.0.0",
"description": "TypeScript template for building MCP servers",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "vite build",
"dev": "node --watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"test:ci": "vitest run --reporter=json --outputFile=test-results.json",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts"
},
"keywords": [
"mcp",
"typescript",
"template",
"vite",
"server"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=22.18.0"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.19.1",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.49.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"prettier": "^3.7.3",
"semantic-release": "^25.0.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"@types/express": "^5.0.5",
"express": "^5.2.1",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2"
}
}