-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.67 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
{
"name": "@frontmcp/plugin-approval",
"version": "1.5.7",
"description": "Approval plugin for FrontMCP - tool authorization workflow with PKCE webhook security",
"author": "AgentFront <info@agentfront.dev>",
"license": "Apache-2.0",
"engines": {
"node": ">=24.0.0"
},
"keywords": [
"mcp",
"approval",
"authorization",
"pkce",
"webhook",
"plugin",
"frontmcp",
"agentfront"
],
"repository": {
"type": "git",
"url": "git+https://github.com/agentfront/frontmcp.git",
"directory": "plugins/plugin-approval"
},
"bugs": {
"url": "https://github.com/agentfront/frontmcp/issues"
},
"homepage": "https://github.com/agentfront/frontmcp/blob/main/plugins/plugin-approval/README.md",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"type": "commonjs",
"main": "./dist/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"development": "./src/index.ts",
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/esm/index.mjs"
}
}
},
"dependencies": {
"@frontmcp/sdk": "1.5.7",
"@frontmcp/utils": "1.5.7",
"ioredis": "^5.8.0",
"reflect-metadata": "^0.2.2"
},
"peerDependencies": {
"@frontmcp/lazy-zod": "1.5.7",
"@vercel/kv": "^2.0.0 || ^3.0.0"
},
"peerDependenciesMeta": {
"@vercel/kv": {
"optional": true
}
},
"devDependencies": {
"reflect-metadata": "^0.2.2"
}
}