-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1015 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1015 Bytes
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
{
"name": "hybridtm",
"productName": "HybridTM",
"version": "0.4.0",
"description": "HybridTM is a Translation Memory (TM) engine that combines semantic embeddings with fuzzy string matching.",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc"
},
"author": {
"name": "Rodolfo M. Raya",
"url": "https://maxprograms.com",
"email": "rmraya@maxprograms.com"
},
"repository": {
"type": "git",
"url": "https://github.com/maxprograms-com/HybridTM.git"
},
"keywords": [],
"license": "EPL-1.0",
"dependencies": {
"@lancedb/lancedb": "^0.27.2",
"@xenova/transformers": "^2.17.2",
"apache-arrow": "^18.1.0",
"sdltm": "^2.2.0",
"typesbcp47": "^1.21.0",
"typesxml": "^2.0.0"
},
"devDependencies": {
"@types/node": "^24.12.2",
"typescript": "^6.0.2"
}
}