-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.22 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.22 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@mozilla-ai/mcpd-proxy",
"version": "0.0.9",
"description": "MCP server proxy for mcpd daemon",
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"bin": {
"mcpd-proxy": "./dist/index.mjs"
},
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "npm run format:check && eslint . && npm run typecheck:all",
"lint:fix": "npm run format && eslint . --fix && npm run typecheck:all",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md}\"",
"typecheck": "tsc --noEmit",
"typecheck:tests": "tsc --noEmit --project tsconfig.test.json",
"typecheck:all": "npm run typecheck && npm run typecheck:tests",
"check": "npm run format && npm run lint:fix && npm run typecheck:all && npm test && npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"mcpd",
"mcpd-proxy",
"model-context-protocol",
"proxy",
"ai",
"llm"
],
"author": "Mozilla AI",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-ai/mcpd-proxy.git"
},
"bugs": {
"url": "https://github.com/mozilla-ai/mcpd-proxy/issues"
},
"homepage": "https://github.com/mozilla-ai/mcpd-proxy#readme",
"files": [
"dist",
"src"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.0",
"@mozilla-ai/mcpd": "^0.1.2"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^4.0.10",
"eslint": "^9.37.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^16.4.0",
"jiti": "^2.6.1",
"prettier": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.0",
"typescript-eslint": "^8.46.0",
"vite": "^7.1.11",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.10"
},
"engines": {
"node": ">=22.10.0"
},
"packageManager": "npm@11.6.2"
}