-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 1.66 KB
/
package.json
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
{
"name": "@nlbridge/monorepo",
"version": "latest",
"description": "nlbridge is a Node.js library and a server that can be used with nlux to connect to LLMs and build AI-powered apps",
"author": "Salmen Hichri",
"license": "MPL-2.0",
"private": true,
"workspaces": [
"dist/dev/*",
"packages/*",
"packages/**/*",
"*"
],
"scripts": {
"cleanup": "node pipeline/scripts/cleanup.mjs",
"set": "node pipeline/scripts/set.mjs",
"reset": "yarn run cleanup && yarn run set",
"build": "node pipeline/scripts/build.mjs",
"watch": "node pipeline/scripts/watch.mjs"
},
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"typescript": "^5.3.3",
"@types/node": "^20.11.17"
},
"main": "index.js",
"bugs": "https://github.com/nluxai/nlbridge/issues",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nluxai/nlbridge.git"
},
"keywords": [
"nlbridge",
"nlux",
"js",
"llm",
"large-language-model",
"convo",
"ai-chatbot",
"ai-chat",
"AiChat",
"chatgpt",
"openai",
"gpt",
"gpt3",
"gpt3.5",
"gpt3.5-turbo",
"gpt4",
"gpt4-turbo",
"hugging face",
"huggingface",
"transformers",
"typescript",
"javascript",
"react",
"generative-ai",
"conversational",
"conversational-ui",
"conversational-interface",
"interface",
"chatbot",
"chat",
"bot",
"ai",
"artificial-intelligence",
"artificial",
"intelligence",
"natural",
"language",
"processing",
"nlp",
"nlu",
"nlg",
"natural",
"language",
"natural-language",
"understanding"
]
}