-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.64 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
{
"name": "mcp-typescript-template",
"version": "1.0.0",
"description": "TypeScript template for building MCP servers",
"type": "module",
"main": "dist/index.js",
"scripts": {
"prebuild": "npm run typecheck",
"build": "vite build",
"dev": "node --watch src/index.ts | pino-pretty",
"start": "node dist/index.js",
"test": "vitest",
"test:ci": "vitest run --reporter=json --outputFile=test-results.json",
"typecheck": "tsc --noEmit",
"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": ">=24.0.0"
},
"devDependencies": {
"@commitlint/cli": "^21.2.0",
"@commitlint/config-conventional": "^21.2.0",
"@modelcontextprotocol/client": "^2.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^11.0.1",
"@types/node": "^22.19.1",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.49.0",
"concurrently": "^10.0.4",
"conventional-changelog-conventionalcommits": "^10.2.1",
"eslint": "^10.8.0",
"globals": "^17.8.0",
"prettier": "^3.9.6",
"semantic-release": "^25.0.5",
"typescript": "^5.9.3",
"vite": "^8.2.0",
"vitest": "^4.1.9"
},
"dependencies": {
"@modelcontextprotocol/node": "^2.0.0",
"@modelcontextprotocol/server": "^2.0.0",
"@types/express": "^5.0.6",
"express": "^5.2.1",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3"
}
}