-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 KB
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
{
"name": "hybridtm",
"productName": "HybridTM",
"version": "0.5.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": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && 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.5.0",
"typesbcp47": "^1.24.0",
"typesxml": "^2.2.0"
},
"devDependencies": {
"@types/node": "^24.13.0",
"typescript": "^6.0.3"
}
}