-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.5 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
{
"private": true,
"name": "@wecandobetter/agents",
"version": "0.0.1-alpha.0",
"description": "Agents for Delphi",
"main": "dist/index.js",
"type": "module",
"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": "contact@wcdb.life",
"url": "https://wcdb.life"
},
"contributors": [
{
"name": "Michiel van der Velde",
"email": "michiel@wcdb.life",
"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": {
"@wecandobetter/delphi": "^0.0.1-alpha.1",
"coleman-liau": "^2.0.1",
"flesch-kincaid": "^2.0.1",
"node-ncbi": "^0.7.3",
"retext-latin": "^4.0.0",
"semanticscholarjs": "^1.0.4",
"smog-formula": "^2.0.1",
"syllable": "^5.0.1",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0",
"wikipedia": "^2.1.1"
}
}