-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.7 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
{
"name": "mylife-maht",
"version": "1.0.0",
"description": "Maht is a an openai model trained on MyLife corporate private and public materials to assist the Board of Directors for MyLife in governance and growth of the organization in ethical, honest, transparent and impactful ways",
"main": "server.js",
"type": "module",
"scripts": {
"start": "dotenv -e .env node server.js",
"dev": "dotenv -e .env nodemon server.js"
},
"nodemonConfig": {
"ignore": [
"*.env",
"*.env-sample",
"*.md",
"*.yaml",
".gitignore",
".git/*",
"views/*",
"inc/js/deprecated/*",
"inc/json-schemas/in-progress/*"
],
"watch": [
"server.js",
"inc/js/*",
"inc/json-schemas/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyLife-Services/mylife-maht.git"
},
"keywords": [
"ai",
"governance",
"mylife",
"hrp",
"board",
"directors",
"executive",
"assistant",
"agent",
"maht"
],
"author": "MyLife",
"license": "MIT",
"bugs": {
"url": "https://github.com/MyLife-Services/mylife-maht/issues"
},
"homepage": "https://github.com/MyLife-Services/mylife-maht#readme",
"dependencies": {
"@azure/cosmos": "^4.0.0",
"@azure/identity": "^4.2.0",
"ajv": "^8.14.0",
"axios": "^1.7.2",
"chalk": "^5.3.0",
"form-data": "^4.0.0",
"js-guid": "^1.0.2",
"koa": "^2.15.3",
"koa-body": "^6.0.1",
"koa-ejs": "^4.3.0",
"koa-generic-session": "^2.3.1",
"koa-router": "^12.0.1",
"koa-static": "^5.0.0",
"marked": "^10.0.0",
"openai": "^4.47.2"
},
"devDependencies": {
"dotenv-cli": "^7.4.2",
"nodemon": "^2.0.22"
}
}