-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.5 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
{
"name": "@apifold/cli",
"version": "0.0.1",
"license": "AGPL-3.0-or-later",
"description": "Turn any OpenAPI spec into a running MCP server with one command",
"repository": {
"type": "git",
"url": "https://github.com/kylefuhri/apifold",
"directory": "apps/cli"
},
"keywords": [
"mcp",
"openapi",
"model-context-protocol",
"ai-agents",
"cli"
],
"files": [
"dist"
],
"type": "module",
"bin": {
"apifold": "./dist/index.js"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc --project tsconfig.json",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"lint": "eslint --ext .ts src/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@apifold/logger": "workspace:*",
"@apifold/registry": "workspace:^",
"@apifold/transformer": "workspace:*",
"@apifold/types": "workspace:*",
"cors": "^2.8.5",
"express": "^4.21.0",
"helmet": "^8.0.0",
"js-yaml": "^4.1.0",
"yargs": "^17.7.2",
"zod": "^3.23.0"
},
"devDependencies": {
"@apifold/eslint-config": "workspace:*",
"@apifold/tsconfig": "workspace:*",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/js-yaml": "^4.0.9",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^2.1.0",
"eslint": "^8.57.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=20"
}
}