-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 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
58
59
60
61
62
63
64
65
66
{
"name": "mcppod",
"version": "0.0.1",
"description": "MCP Pod encapsulates the logic for setting up everything required for a MCP server and running it.",
"keywords": [
"mcp",
"anthropic",
"pod",
"server"
],
"author": "Andrey Vavilov <a@vavilov.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/harmonyjs/mcppod.git"
},
"engines": {
"node": ">=20"
},
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"package.json",
"package-lock.json",
"CONTRIBUTING.md",
"LICENSE",
"README.md"
],
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"start": "node dist/index.js",
"type-check": "tsc --noEmit",
"lint": "eslint \"**/*.ts\"",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"test": "vitest --watch=false",
"test:coverage": "vitest run --coverage",
"check": "npm run type-check && npm run lint && npm run format:check && npm run test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.1.1",
"pino": "9.6.0",
"tmp": "0.2.3",
"zod": "3.24.1"
},
"devDependencies": {
"@types/node": "22.10.6",
"@types/prettier": "3.0.0",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"@vitest/coverage-v8": "3.0.0-beta.3",
"eslint": "9.18.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "2.31.0",
"globals": "15.14.0",
"prettier": "3.4.2",
"typescript": "5.7.3",
"vite": "6.0.7",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.0.0-beta.3"
}
}