-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
86 lines (86 loc) · 1.89 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
81
82
83
84
85
86
{
"name": "@nlux/monorepo",
"version": "latest",
"description": "NLUX is a JavaScript and React library for building conversational AI experiences.",
"author": "Salmen Hichri",
"license": "SEE LICENSE IN ROOT LICENSE FILE",
"homepage": "https://docs.nlkit.com/nlux",
"private": true,
"workspaces": [
"dist/dev/*",
"packages/*",
"packages/**/*",
"samples/*",
"*"
],
"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",
"build-docs": "cd docs && yarn run build",
"watch": "node pipeline/scripts/watch.mjs",
"test": "node pipeline/scripts/test.mjs",
"lint": "yarn run eslint . --no-inline-config"
},
"peerDependencies": {},
"devDependencies": {
"@eslint/js": "^9",
"eslint": "^9",
"jsdom": "^24",
"symlink-dir": "^6",
"typescript": "^5",
"typescript-eslint": "^7",
"vite": "^5"
},
"bugs": "https://github.com/nlkitai/nlux/issues",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nlkitai/nlux.git"
},
"keywords": [
"nlux",
"js",
"llm",
"large-language-model",
"convo",
"ai-chatbot",
"ai-chat",
"AiChat",
"chatgpt",
"openai",
"gpt",
"gpt4",
"gpt4-turbo",
"gpt-4o",
"hugging face",
"huggingface",
"transformers",
"typescript",
"javascript",
"react",
"generative-ai",
"conversational",
"conversational-ui",
"conversational-interface",
"interface",
"chatbot",
"chat",
"assistant",
"ai",
"artificial-intelligence",
"artificial",
"intelligence",
"natural",
"language",
"processing",
"nlp",
"nlu",
"nlg",
"natural",
"language",
"natural-language",
"understanding"
],
"packageManager": "[email protected]"
}