-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.2 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.2 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
{
"name": "flowmcp-core",
"version": "3.0.0",
"description": "FlowMCP is a framework for adapting existing web APIs into a standardized Model Context Protocol (MCP) interface, enabling structured, testable, and semantically consistent access for AI systems.",
"main": "./src/index.mjs",
"exports": {
".": "./src/index.mjs",
"./legacy": "./src/legacy/index.mjs",
"./v1": "./src/v1/index.mjs",
"./v2": "./src/v2/index.mjs"
},
"directories": {
"test": "tests"
},
"type": "module",
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules' npx jest --detectOpenHandles",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' npx jest --detectOpenHandles --coverage",
"test:coverage:src": "NODE_OPTIONS='--experimental-vm-modules' npx jest --detectOpenHandles --coverage --collectCoverageFrom='src/**/*.mjs'",
"inspector": "npx @modelcontextprotocol/inspector"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"better-sqlite3": "^12.6.2",
"flatted": "^3.3.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.13.0",
"jest": "^30.0.3"
}
}