@fre4x/openai 1.0.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +62 -0
- package/dist/index.js +44075 -0
- package/package.json +27 -0
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fre4x/openai",
|
|
3
|
+
"version": "1.0.57",
|
|
4
|
+
"description": "OpenAI MCP server providing multimodal analysis, image generation, and transcription.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"openai": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "node ../scripts/build-package.mjs",
|
|
15
|
+
"dev": "tsx watch src/index.ts",
|
|
16
|
+
"typecheck": "node --max-old-space-size=4096 ../node_modules/typescript/bin/tsc --noEmit",
|
|
17
|
+
"prepublishOnly": "npm run typecheck && npm run build",
|
|
18
|
+
"test": "vitest run --exclude dist",
|
|
19
|
+
"test:watch": "vitest",
|
|
20
|
+
"inspector": "node ../scripts/run-official-inspector.mjs node dist/index.js"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
24
|
+
"openai": "^4.86.1",
|
|
25
|
+
"zod": "4.3.6"
|
|
26
|
+
}
|
|
27
|
+
}
|