-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.94 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
{
"name": "@frontmcp/plugin-skilled-openapi",
"version": "1.5.7",
"description": "FrontMCP plugin: serve a customer's OpenAPI spec as skill bundles (signed, OpenAPI-Overlay-based) with hidden per-operation tools mediated by three meta-tools (search_skill / load_skill / run_workflow — the last runs an enclave-sandboxed AgentScript that orchestrates the loaded skills' operations).",
"author": "AgentFront <info@agentfront.dev>",
"license": "Apache-2.0",
"engines": {
"node": ">=24.0.0"
},
"keywords": [
"mcp",
"frontmcp",
"openapi",
"skills",
"agent-skills",
"plugin",
"agentfront"
],
"repository": {
"type": "git",
"url": "git+https://github.com/agentfront/frontmcp.git",
"directory": "plugins/plugin-skilled-openapi"
},
"bugs": {
"url": "https://github.com/agentfront/frontmcp/issues"
},
"homepage": "https://github.com/agentfront/frontmcp/blob/main/plugins/plugin-skilled-openapi/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/adapters": "1.5.7",
"@frontmcp/auth": "1.5.7",
"@frontmcp/sdk": "1.5.7"
},
"peerDependencies": {
"@enclave-vm/ast": "*",
"@enclave-vm/core": "*",
"@frontmcp/lazy-zod": "1.5.7"
},
"peerDependenciesMeta": {
"@enclave-vm/ast": {
"optional": true
},
"@enclave-vm/core": {
"optional": true
}
},
"devDependencies": {
"reflect-metadata": "^0.2.2"
}
}