-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 2.16 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
{
"name": "flowmcp-cli",
"version": "4.8.0",
"description": "CLI for developing and validating FlowMCP schemas",
"type": "module",
"license": "MIT",
"author": "FlowMCP",
"repository": {
"type": "git",
"url": "git+https://github.com/FlowMCP/flowmcp-cli.git"
},
"bugs": {
"url": "https://github.com/FlowMCP/flowmcp-cli/issues"
},
"homepage": "https://github.com/FlowMCP/flowmcp-cli#readme",
"bin": {
"flowmcp": "./src/index.mjs"
},
"main": "./src/task/FlowMcpCli.mjs",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:coverage:src": "node --experimental-vm-modules node_modules/.bin/jest --coverage --collectCoverageFrom='src/**/*.mjs'",
"test:file": "node --experimental-vm-modules node_modules/.bin/jest",
"test:isolation": "bash scripts/friction-test-isolation.sh"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"chalk": "^5.6.2",
"ethers": "^6.16.0",
"figlet": "^1.10.0",
"flowmcp": "git+https://github.com/FlowMCP/flowmcp-core.git#8dab10b884532128748046395c1f0b249b32569b",
"flowmcp-grading": "github:FlowMCP/flowmcp-grading#be904821dc086b01e731243ca9d5fd20a289e03d",
"geo-csv-tsv-toolkit": "git+https://github.com/FlowMCP/geo-csv-tsv-toolkit.git#5d5e51f8d88a35a20dc44489958e5f376e1674eb",
"geo-dzt-toolkit": "git+https://github.com/FlowMCP/geo-dzt-toolkit.git#9f1d52c9b4f9372bd3749ebb0bb53b48e22a364d",
"geo-geojson-toolkit": "git+https://github.com/FlowMCP/geo-geojson-toolkit.git#af764638f215083da52be785b8e276fa98217b02",
"geo-gtfs-toolkit": "git+https://github.com/FlowMCP/geo-gtfs-toolkit.git#b868e612dc74c70e6401c9568a044f61ce80cede",
"geo-idbridge-toolkit": "git+https://github.com/FlowMCP/geo-idbridge-toolkit.git#af8e57fccea2ec0716c09acb131b72f73f13f8db",
"geo-osm-toolkit": "git+https://github.com/FlowMCP/geo-osm-toolkit.git#6374759262658bf58c41718a0b145d63f9c3d5c2",
"geo-zhv-toolkit": "git+https://github.com/FlowMCP/geo-zhv-toolkit.git#10372245125e60472e64ba69fa575f91373215e0",
"inquirer": "^12.3.0"
},
"devDependencies": {
"@jest/globals": "^30.0.0",
"jest": "^30.0.0"
}
}