-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "@wecandobetter/delphi",
"version": "0.0.1-alpha.3",
"description": "Delphi is a versatile and adaptable conversational agent framework that streamlines the creation and management of chatbots and AI-driven communication systems.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:ts",
"build:ts": "tsc -p tsconfig.build.json",
"test": "npm run build && jest",
"test:coverage": "npm run test -- --coverage",
"publish:npm": "npm run test && npm publish"
},
"keywords": [
"chatbot",
"conversational",
"ai",
"artificial intelligence",
"nlp",
"natural language processing",
"openai"
],
"repository": {
"type": "git",
"url": "git+https://github.com/WeCanDoBetter/delphi"
},
"author": {
"name": "We Can Do Better",
"email": "[email protected]",
"url": "https://wcdb.life"
},
"contributors": [
{
"name": "Michiel van der Velde",
"email": "[email protected]",
"url": "https://michielvdvelde.nl"
}
],
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.9.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@azure/openai": "^1.0.0-beta.8",
"ajv": "^8.12.0"
}
}