-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 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
{
"name": "tldr-translation-pairs-gen",
"version": "0.2.2",
"description": "Generates a structured dataset in various formats derived from tldr-pages.",
"author": "tldr",
"license": "MIT",
"homepage": "https://github.com/tldr-pages/tldr-translation-pairs-gen#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tldr-pages/tldr-translation-pairs-gen.git"
},
"bugs": {
"url": "https://github.com/tldr-pages/tldr-translation-pairs-gen/issues"
},
"keywords": [
"tldr",
"opus",
"corpus",
"i18n"
],
"bin": {
"tldr-translation-pairs-gen": "./dist/index.js"
},
"engines": {
"node": ">=24.3"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "node --require ts-node/register --test ./**/*.test.ts",
"tldr-translation-pairs-gen": "node ./dist/index.js"
},
"dependencies": {
"commander": "^14.0.3",
"csv-stringify": "^6.6.0",
"fast-glob": "^3.3.3",
"marked": "^17.0.3",
"xmlbuilder2": "^4.0.3"
},
"devDependencies": {
"@types/node": "^25.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}