@makaio/adapter-openai-node 1.0.0-dev-1779051654000

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/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@makaio/adapter-openai-node",
3
+ "description": "OpenAI adapter using the official OpenAI Node SDK for agentic chat completions.",
4
+ "version": "1.0.0-dev-1779051654000",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/makaio-ai/makaio-framework.git",
9
+ "directory": "adapters/implementations/openai-node"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/makaio-ai/makaio-framework/issues"
13
+ },
14
+ "homepage": "https://github.com/makaio-ai/makaio-framework#readme",
15
+ "main": "dist/index.mjs",
16
+ "types": "dist/index.d.mts",
17
+ "type": "module",
18
+ "files": [
19
+ "dist",
20
+ "descriptor.json",
21
+ "LICENSE",
22
+ "package.json",
23
+ "README.md"
24
+ ],
25
+ "exports": {
26
+ ".": {
27
+ "types": "./dist/index.d.mts",
28
+ "default": "./dist/index.mjs"
29
+ },
30
+ "./package.json": "./package.json"
31
+ },
32
+ "scripts": {
33
+ "build": "bun build.ts"
34
+ },
35
+ "dependencies": {
36
+ "zod": "^4.1.13"
37
+ },
38
+ "peerDependencies": {
39
+ "@makaio/framework": "^0.1.0",
40
+ "openai": ">=6.22.0 <7.0.0"
41
+ },
42
+ "devDependencies": {
43
+ "@makaio/ai-adapters-core": "workspace:*",
44
+ "@makaio/ai-adapters-stream-session": "workspace:*",
45
+ "@makaio/build-tooling": "workspace:*",
46
+ "@makaio/bus-core": "workspace:*",
47
+ "@makaio/contracts": "workspace:*",
48
+ "@makaio/core": "workspace:*",
49
+ "@makaio/provider-alibaba": "workspace:*",
50
+ "@makaio/provider-nanogpt": "workspace:*",
51
+ "@makaio/provider-openai": "workspace:*",
52
+ "@makaio/provider-opencode-go": "workspace:*",
53
+ "@makaio/provider-openrouter": "workspace:*",
54
+ "@makaio/provider-z-ai": "workspace:*",
55
+ "@makaio/utils": "workspace:*",
56
+ "@types/node": "^24.3.0",
57
+ "openai": "6.22.0"
58
+ },
59
+ "publishConfig": {
60
+ "access": "public",
61
+ "directory": "node_modules/.makaio-publish",
62
+ "exports": {
63
+ ".": {
64
+ "types": "./dist/index.d.mts",
65
+ "default": "./dist/index.mjs"
66
+ },
67
+ "./package.json": "./package.json"
68
+ }
69
+ }
70
+ }