melchat 0.0.1
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/LICENSE +21 -0
- package/README.md +131 -0
- package/bin/melchat.js +114 -0
- package/dist/index.html +2114 -0
- package/package.json +55 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "melchat",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "100+ AI models in one lightweight chat interface. GPT-4, Claude, Gemini, Llama, Qwen, and more - all in a single 69KB file.",
|
|
5
|
+
"main": "dist/index.html",
|
|
6
|
+
"bin": {
|
|
7
|
+
"melchat": "./bin/melchat.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"start": "node bin/melchat.js",
|
|
11
|
+
"test": "echo \"Tests coming soon\" && exit 0"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"ai",
|
|
15
|
+
"chat",
|
|
16
|
+
"llm",
|
|
17
|
+
"gpt",
|
|
18
|
+
"gpt-4",
|
|
19
|
+
"claude",
|
|
20
|
+
"gemini",
|
|
21
|
+
"llama",
|
|
22
|
+
"qwen",
|
|
23
|
+
"openrouter",
|
|
24
|
+
"openai",
|
|
25
|
+
"anthropic",
|
|
26
|
+
"chatbot",
|
|
27
|
+
"ai-chat",
|
|
28
|
+
"local-llm",
|
|
29
|
+
"ollama",
|
|
30
|
+
"deepseek",
|
|
31
|
+
"image-generation",
|
|
32
|
+
"flux",
|
|
33
|
+
"streaming",
|
|
34
|
+
"cli"
|
|
35
|
+
],
|
|
36
|
+
"author": "Melvin Carvalho",
|
|
37
|
+
"license": "MIT",
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "git+https://github.com/melvincarvalho/melchat.git"
|
|
41
|
+
},
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/melvincarvalho/melchat/issues"
|
|
44
|
+
},
|
|
45
|
+
"homepage": "https://github.com/melvincarvalho/melchat#readme",
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=14.0.0"
|
|
48
|
+
},
|
|
49
|
+
"files": [
|
|
50
|
+
"bin/",
|
|
51
|
+
"dist/",
|
|
52
|
+
"README.md",
|
|
53
|
+
"LICENSE"
|
|
54
|
+
]
|
|
55
|
+
}
|