-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.81 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
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
{
"name": "hybridtm",
"productName": "HybridTM",
"version": "0.9.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",
"bin": {
"hybridtm": "dist/cli/hybridtmCli.js"
},
"files": [
"/dist"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc && node -e \"const fs=require('node:fs'); const p='dist/cli/hybridtmCli.js'; if (fs.existsSync(p)) { try { fs.chmodSync(p, 0o755); } catch {} }\""
},
"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": [
"translation-memory",
"localization",
"translation",
"l10n",
"i18n",
"cat-tool",
"xliff",
"xliff2",
"tmx",
"sdltm",
"semantic-search",
"embeddings",
"fuzzy-matching",
"lancedb",
"cli"
],
"license": "EPL-1.0",
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"@lancedb/lancedb": "^0.27.2",
"apache-arrow": "^18.1.0",
"sdltm": "^2.5.0",
"typesbcp47": "^1.24.1",
"typesmatch": "^0.1.0",
"typesxliff": "^1.2.2",
"typesxml": "^2.2.1"
},
"devDependencies": {
"@types/node": "^24.13.2",
"typescript": "^6.0.3"
},
"allowScripts": {
"onnxruntime-node@1.24.3": true,
"protobufjs@7.6.5": true,
"sharp@0.34.5": true
}
}