-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "chunk-match",
"version": "1.1.6",
"description": "NodeJS library that semantically chunks text and matches it against a user query using cosine similarity for precise and relevant text retrieval",
"type": "module",
"main": "chunk-match.js",
"scripts": {
"clean": "rimraf node_modules package-lock.json && npm install",
"example": "node example/example.js"
},
"homepage": "https://www.equilllabs.com/projects/chunk-match",
"repository": {
"type": "git",
"url": "https://github.com/jparkerweb/chunk-match.git"
},
"bugs": {
"url": "https://github.com/jparkerweb/chunk-match/issues",
"email": "[email protected]"
},
"keywords": [
"semantic",
"chunking",
"text-chunking",
"semantic-chunking",
"semantic-analysis",
"cosine-similarity",
"text-similarity",
"query-matching",
"text-matching",
"text-embedding",
"natural-language-processing",
"nlp",
"information-retrieval",
"nodejs",
"javascript",
"search",
"text-analysis",
"data-matching",
"embedding",
"text-processing",
"similarity-matching"
],
"author": "Justin Parker",
"license": "MIT",
"dependencies": {
"lru-cache": "^11.0.2",
"semantic-chunking": "^2.4.3"
}
}