-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.28 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 4.28 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@lubab/miftah",
"version": "1.1.6",
"description": "Wrap any MCP. Use the right account without reconnecting.",
"keywords": [
"mcp",
"model-context-protocol",
"credential-broker",
"multi-account",
"security",
"cli"
],
"homepage": "https://github.com/mohanagy/miftah#readme",
"bugs": {
"url": "https://github.com/mohanagy/miftah/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohanagy/miftah.git"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./plugin-api": {
"types": "./dist/plugin-api.d.ts",
"import": "./dist/plugin-api.js"
}
},
"bin": {
"miftah": "./dist/cli/main.js"
},
"files": [
"dist",
"examples",
"docs",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:core": "vitest run tests/authenticated-request-context-docs-contract.test.ts tests/authenticated-request-context.test.ts tests/config.test.ts tests/config-loader.test.ts tests/config-diagnostics.test.ts tests/config-migration.test.ts tests/config-public-contract.test.ts tests/config-runtime-parity.test.ts tests/config-schema-contract.test.ts tests/executable-resolver.test.ts tests/http-server.test.ts tests/mcp-compatibility-docs-contract.test.ts tests/presets.test.ts tests/profile-context-handle-docs-contract.test.ts tests/profile-context-handle.test.ts tests/profile-manager.test.ts tests/provider-routing-matchers.test.ts tests/provider-routing-matchers-docs-contract.test.ts tests/routing-context.test.ts tests/routing-policy.test.ts tests/secret-provider-availability.test.ts tests/secret-providers.test.ts tests/secrets.test.ts tests/stateless-profile-context-runtime.test.ts tests/tooling-config.test.ts tests/windows-config-acl.test.ts tests/windows-config-migration-acl-failure.test.ts tests/windows-config-migration-acl.test.ts tests/windows-secret-process-resolution.test.ts",
"test:oauth-console": "vitest run tests/oauth tests/remote-oauth tests/console tests/identity tests/provider-adapter-contract.test.ts tests/preset-catalog.test.ts tests/init-command.test.ts tests/cli-exit-codes.test.ts tests/cli-parse.test.ts tests/config-migration.test.ts tests/audit-integrity.test.ts",
"test:package": "vitest run tests/package-contract.test.ts",
"test:inspector": "npm run build && node scripts/check-inspector-interop.mjs",
"test:coverage": "vitest run --coverage",
"smoke:cli": "node dist/cli/main.js schema",
"test:cli": "vitest run tests/cli-error-output.test.ts && npm run test:package && npm run smoke:cli",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"check:pack": "node scripts/check-pack.mjs",
"build:test-fixture": "node scripts/build-test-fixture.mjs",
"check:test-fixture": "node scripts/build-test-fixture.mjs --check"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@hono/node-server": "2.1.1",
"@modelcontextprotocol/client": "^2.0.0",
"@modelcontextprotocol/core": "^2.0.0",
"@modelcontextprotocol/sdk": "^1.30.0",
"@modelcontextprotocol/server": "^2.0.0",
"@napi-rs/keyring": "1.3.0",
"dotenv": "^17.4.2",
"hono": "4.13.7",
"zod": "^4.2.0",
"zod-to-json-schema": "3.25.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@modelcontextprotocol/node": "^2.0.0",
"@modelcontextprotocol/server-legacy": "^2.0.0",
"@types/node": "^26.5.0",
"@vitest/coverage-v8": "^5.0.0",
"esbuild": "0.28.2",
"eslint": "^10.10.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.70.0",
"vite": "^8.0.0",
"vitest": "^5.0.0"
},
"overrides": {
"@hono/node-server": "2.1.1",
"brace-expansion": "5.0.9",
"esbuild": "0.28.2",
"eslint": {
"minimatch": {
"brace-expansion": "5.0.9"
}
},
"fast-uri": "3.1.7",
"ip-address": "10.3.1",
"nanoid": "3.3.18",
"qs": "6.16.0",
"typescript-eslint": {
"minimatch": {
"brace-expansion": "5.0.9"
}
}
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}