-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.35 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.35 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
{
"name": "mcp",
"main": "dist/index.js",
"private": true,
"packageManager": "yarn@4.9.2",
"scripts": {
"build": "esbuild --bundle --outdir=dist --platform=node --target=node22 --tree-shaking=true --sourcemap src/*.ts",
"fix.eslint": "eslint --fix .",
"fix.prettier": "prettier --cache --cache-location=.cache/.prettier-cache --list-different --ignore-path .prettierignore '**/*' -w",
"start": "tsx src/index.ts",
"test.eslint": "eslint --ext .ts,.tsx,.cts,.js,.jsx,.cjs --format visualstudio --report-unused-disable-directives .",
"test.prettier": "prettier --cache --cache-location=.cache/.prettier-cache --list-different --ignore-path .prettierignore '**/*'",
"test.tsc": "tsc --noEmit",
"test.yarn": "doctor"
},
"devDependencies": {
"@types/node": "^24.0.1",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"@yarnpkg/doctor": "^4.0.4",
"esbuild": "^0.25.5",
"eslint": "8.57.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.13.3",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"tsx": "^4.20.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.25.0"
},
"engines": {
"node": "^20.18.0 || ^22.14.0"
}
}