-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 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
{
"name": "cr-chatbot",
"version": "1.0.0-alpha",
"description": "A professional, clean web-based chatbot frontend for Ollama endpoints with thinking models support",
"main": "cr-chatbot/index.html",
"scripts": {
"start": "cd cr-chatbot && python3 -m http.server 9000",
"dev": "cd cr-chatbot && python3 -m http.server 9000",
"serve": "cd cr-chatbot && python3 -m http.server 9000",
"build": "echo 'No build step required - static files'",
"test": "echo 'No tests configured'",
"lint": "echo 'No linting configured - vanilla JS project'",
"deploy": "echo 'Deployment handled by GitHub Actions'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3eekeeper/cr-chatbot.git"
},
"keywords": [
"chatbot",
"ollama",
"ai",
"chat",
"frontend",
"web",
"javascript",
"thinking-models",
"reasoning",
"conversation",
"llm",
"local-ai"
],
"author": "3eekeeper",
"license": "MIT",
"bugs": {
"url": "https://github.com/3eekeeper/cr-chatbot/issues"
},
"homepage": "https://3eekeeper.github.io/cr-chatbot/",
"engines": {
"node": ">=16.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}