This repository was archived by the owner on Mar 20, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.94 KB
/
package.json
File metadata and controls
77 lines (77 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
73
74
75
76
77
{
"name": "@samchon/openapi",
"version": "6.0.1",
"description": "Universal OpenAPI to LLM function calling schemas. Transform any Swagger/OpenAPI document into type-safe schemas for OpenAI, Claude, Qwen, and more.",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"typings": "./lib/index.d.ts",
"scripts": {
"prepare": "ts-patch install",
"build": "rimraf lib && tsc && rollup -c && ts-node build/post.ts",
"dev": "rimraf lib && tsc --watch",
"typedoc": "typedoc --plugin typedoc-github-theme --theme typedoc-github-theme"
},
"keywords": [
"swagger",
"openapi",
"openapi-generator",
"openapi-validator",
"converter",
"migrate",
"typia",
"nestia",
"llm",
"llm-function-calling",
"structured-output",
"openai",
"chatgpt",
"claude",
"qwen",
"llama"
],
"repository": {
"type": "git",
"url": "https://github.com/samchon/openapi"
},
"author": "Jeongho Nam",
"license": "MIT",
"bugs": {
"url": "https://github.com/samchon/openapi/issues"
},
"homepage": "https://samchon.github.io/openapi/api",
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.11.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^20.12.7",
"gh-pages": "^6.3.0",
"prettier": "^3.5.3",
"prettier-plugin-jsdoc": "^1.3.2",
"rimraf": "^5.0.5",
"rollup": "^4.18.1",
"rollup-plugin-auto-external": "^2.0.0",
"tinyglobby": "^0.2.10",
"ts-node": "^10.9.2",
"ts-patch": "^3.3.0",
"typedoc": "^0.27.6",
"typedoc-github-theme": "^0.2.1",
"typescript": "~5.8.3"
},
"sideEffects": false,
"files": [
"lib",
"src",
"README.md",
"LICENSE"
],
"packageManager": "pnpm@10.5.2",
"pnpm": {
"executionEnv": {
"nodeVersion": "22.14.0"
},
"onlyBuiltDependencies": [
"@nestjs/core"
]
}
}