-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.59 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
{
"name": "typesterms",
"productName": "TypesTerms",
"version": "1.2.0",
"description": "TypeScript library for extracting terminology from XLIFF 2.x documents using the YAKE algorithm",
"keywords": [
"XLIFF",
"TypeScript",
"terminology",
"term extraction",
"YAKE",
"localization",
"translation"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc && node dist/copy-assets.js && node -e \"const fs=require('node:fs'); ['dist/TermExtractorRunner.js','dist/BilingualExtractionRunner.js'].forEach(p=>{ if(fs.existsSync(p)) { try { fs.chmodSync(p,0o755); } catch {} } })\""
},
"engines": {
"node": ">=24.14.0"
},
"author": {
"name": "Rodolfo M. Raya",
"url": "https://maxprograms.com",
"email": "rmraya@maxprograms.com"
},
"license": "EPL-1.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/maxprograms-com/TypesTerms.git"
},
"bin": {
"termextractor": "dist/TermExtractorRunner.js",
"bilingualextractor": "dist/BilingualExtractionRunner.js"
},
"dependencies": {
"typesbcp47": "^1.24.0",
"typesxliff": "^1.1.0",
"typesxml": "^2.2.0"
},
"devDependencies": {
"@types/node": "^24.13.0",
"typescript": "^6.0.3"
}
}