-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.24 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.24 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
55
56
57
{
"name": "kuttai",
"version": "1.1.0",
"description": "AI chatbot assistant for KTU students developed by EcoCee",
"main": "index.js",
"type": "module",
"bin": {
"kuttai": "./index.js"
},
"scripts": {
"start": "node index.js",
"prepublishOnly": "npm test",
"test": "echo \"No tests specified\" && exit 0"
},
"keywords": [
"ktu",
"ai",
"chatbot",
"student",
"assistant",
"education",
"notes",
"ecocee",
"opensource"
],
"author": "Sreeraj V Rajesh (EcoCee) <info@ecocee.in>",
"license": "EcoCee-OpenSource",
"homepage": "https://github.com/cyberkutti-iedc/kuttai#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cyberkutti-iedc/kuttai.git"
},
"bugs": {
"url": "https://github.com/cyberkutti-iedc/kuttai/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"index.js",
"chatbot.js",
"src/",
"docs/",
"public/",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md"
],
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"node-fetch": "^3.3.2",
"node-llama-cpp": "^3.12.1",
"open": "^9.1.0"
}
}