-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.18 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.18 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
{
"name": "mcp-funnel-monorepo",
"version": "0.0.0",
"private": true,
"author": "Christoph Schramm",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chris-schra/mcp-funnel.git"
},
"workspaces": [
"packages/**/*"
],
"type": "module",
"scripts": {
"build": "yarn workspaces foreach -v --topological-dev -p -A run build",
"release": "yarn build && yarn workspaces foreach --exclude mcp-funnel-monorepo -v --topological-dev -p -A run release",
"prettier": "prettier -c \"**/*.{ts,tsx,js,json,md}\"",
"lint": "eslint --ext .ts,.tsx",
"validate": "tsx packages/mcp/src/cli.ts run ts-validate --fix",
"test": "CI=true vitest run",
"test:e2e": "CI=true TEST_E2E=true vitest run",
"test:full": "JS_DEBUGGER_RUN_REAL=true CI=true TEST_E2E=true RUN_INTEGRATION_TESTS=true vitest run",
"test:ui": "vitest --ui",
"test:coverage": "JS_DEBUGGER_RUN_REAL=true CI=true TEST_E2E=true RUN_INTEGRATION_TESTS=true vitest run --coverage",
"dev:npm-lookup": "tsx packages/mcp/src/cli.ts run npm lookup \"vitest\"",
"dev:mcp": "tsx packages/mcp/src/cli.ts",
"debug": "npx @modelcontextprotocol/inspector tsx packages/mcp/src/cli.ts",
"clean": "yarn workspaces foreach -Atp exec rimraf dist"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"zod": "^4.1.8"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@hono/zod-validator": "^0.7.2",
"@types/micromatch": "^4.0.9",
"@types/node": "^24.3.1",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.35.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^60.5.0",
"eslint-plugin-tsdoc": "^0.4.0",
"globby": "^14.1.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"printWidth": 100,
"semi": true,
"singleQuote": true
},
"packageManager": "yarn@4.9.2"
}