-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.22 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.22 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "sufetch",
"type": "module",
"version": "0.4.0",
"private": false,
"packageManager": "pnpm@10.20.0",
"description": "Type-safe OpenAPI clients with MCP server for AI-driven API exploration",
"author": "productdevbook",
"license": "MIT",
"homepage": "https://github.com/productdevbook/sufetch#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/productdevbook/sufetch.git"
},
"bugs": {
"url": "https://github.com/productdevbook/sufetch/issues"
},
"keywords": [
"openapi",
"typescript",
"mcp",
"model-context-protocol",
"type-safe",
"api-client",
"ory",
"kratos",
"hydra",
"ai",
"claude"
],
"exports": {
"./digitalocean": {
"types": "./dist/digitalocean.d.ts",
"import": "./dist/digitalocean.js"
},
"./hetzner": {
"types": "./dist/hetzner.d.ts",
"import": "./dist/hetzner.js"
},
"./ory": {
"types": "./dist/ory.d.ts",
"import": "./dist/ory.js"
}
},
"bin": {
"sufetch-mcp": "./dist/mcp-server.js"
},
"files": [
"dist",
"openapi-specs"
],
"scripts": {
"build": "pnpm generate:types && pnpm update:exports && tsdown && pnpm copy:types && pnpm add:refs",
"generate:types": "tsx scripts/generate-types.ts",
"update:exports": "tsx scripts/update-exports.ts",
"copy:types": "tsx scripts/copy-types.ts",
"add:refs": "tsx scripts/add-type-references.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:types": "tsc --noEmit",
"release": "pnpm build && pnpm bumpp && pnpm publish --no-git-checks --access public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.2",
"apiful": "^4.0.0",
"oxc-parser": "^0.96.0",
"zod": "3.25.76",
"zod-to-json-schema": "3.24.6"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@types/node": "^24.10.0",
"bumpp": "^10.3.1",
"eslint": "^9.39.0",
"openapi-types": "^12.1.3",
"openapi-typescript": "^7.10.1",
"tsdown": "^0.15.12",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.6"
}
}