-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.92 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.92 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
{
"name": "http-stream-mcp-template",
"version": "1.0.0",
"description": "HTTP Stream MCP Template - A foundational structure for building MCP servers with HTTP streaming capabilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"dev": "tsx watch src/index.ts",
"dev:debug": "tsx watch --inspect src/index.ts",
"start": "node dist/index.js",
"start:prod": "NODE_ENV=production node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage --reporter=verbose",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"lint:fix": "eslint src/**/*.ts tests/**/*.ts --fix",
"format": "prettier --write src/**/*.ts tests/**/*.ts",
"format:check": "prettier --check src/**/*.ts tests/**/*.ts",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"docker:build": "docker build -t http-stream-mcp-template .",
"docker:run": "docker run -p 3000:3000 http-stream-mcp-template",
"docker:dev": "docker build -f Dockerfile.dev -t http-stream-mcp-template:dev . && docker run -p 3000:3000 -v $(pwd):/app http-stream-mcp-template:dev"
},
"keywords": [
"mcp",
"model-context-protocol",
"http-streaming",
"template",
"typescript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0",
"supertest": "^6.3.0",
"@types/supertest": "^6.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"dependencies": {
"ajv": "^8.12.0",
"express": "^4.18.0",
"@types/express": "^4.17.0",
"@types/json-schema": "^7.0.0"
}
}