-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.74 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.74 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
{
"name": "@inductiv/node-red-openai-api",
"version": "6.34.0",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/allanbunch"
},
"description": "Enhance your Node-RED projects with advanced AI capabilities.",
"main": "node.js",
"engines": {
"node": ">=18.0.0"
},
"node-red": {
"version": ">=3.0.0",
"nodes": {
"openai": "node.js"
}
},
"keywords": [
"node-red",
"openai",
"ai",
"openai-api",
"llm",
"responses-api",
"realtime-api",
"chatkit",
"agent-builder",
"node-red-contrib"
],
"scripts": {
"build:html": "gulp build-html",
"build:js": "esbuild src/lib.js --bundle --outfile=lib.js --format=cjs --platform=node",
"build": "npm run build:html && npm run build:js",
"test": "node --test test/service-host-node.test.js test/service-host-editor-template.test.js test/openai-node-auth-routing.test.js test/openai-methods-mapping.test.js test/openai-responses-websocket.test.js test/chatkit-docs-examples.test.js test/videos-docs-examples.test.js test/examples-service-host-neutrality.test.js test/audio-docs-parity.test.js test/batch-docs-parity.test.js test/comparison-filter-parity.test.js test/vector-store-family-parity.test.js test/model-slug-parity.test.js test/defer-loading-parity.test.js test/conversations-docs-parity.test.js",
"prepare": "npm run build"
},
"dependencies": {
"openai": "^6.34.0",
"ws": "^8.19.0"
},
"author": "Allan Bunch",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/allanbunch/node-red-openai-api.git"
},
"devDependencies": {
"@cucumber/cucumber": "^12.8.0",
"esbuild": "^0.27.0",
"gulp": "^5.0.1",
"gulp-file-include": "^2.3.0"
}
}