-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.85 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": "node-nlp-typescript",
"version": "1.0.3",
"description": "nlp.js from axa-group in typescript 🚀. NLP library for building bots 🤖, with entity extraction, sentiment analysis, automatic language identification, and more. ",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "tsc --watch"
},
"files": [
"src",
"dist",
"LICENSE",
"README.md",
"package.json",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Leoglme/node-nlp-typescript.git"
},
"keywords": [
"node-nlp",
"typescript",
"ai",
"natural language processing",
"artifical intelligence",
"natural language understanding",
"natural language generation",
"NLP",
"NLU",
"NLG",
"sentiment analysis",
"classifier",
"logistic regression",
"Natural",
"entity extraction",
"named entity recognition",
"chatbot",
"bot"
],
"author": "dibodev",
"license": "MIT",
"bugs": {
"url": "https://github.com/Leoglme/node-nlp-typescript/issues"
},
"homepage": "https://github.com/Leoglme/node-nlp-typescript#readme",
"devDependencies": {
"tsup": "^6.7.0",
"typescript": "^5.0.2"
},
"dependencies": {
"@nlpjs/builtin-duckling": "^4.26.1",
"@nlpjs/builtin-microsoft": "^4.26.1",
"@nlpjs/core-loader": "^4.26.1",
"@nlpjs/emoji": "^4.26.1",
"@nlpjs/evaluator": "^4.26.1",
"@nlpjs/lang-all": "^4.26.1",
"@nlpjs/language": "^4.25.0",
"@nlpjs/neural": "^4.25.0",
"@nlpjs/nlg": "^4.26.1",
"@nlpjs/nlp": "^4.26.1",
"@nlpjs/nlu": "^4.26.1",
"@nlpjs/request": "^4.25.0",
"@nlpjs/sentiment": "^4.26.1",
"@nlpjs/similarity": "^4.26.1",
"@nlpjs/xtables": "^4.25.0",
"@types/node": "^18.15.11"
}
}