-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 KB
/
package.json
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
{
"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"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "mocha -r ts-node/register 'tests/**/*.ts'",
"tldr-translation-pairs-gen": "node ./dist/index.js"
},
"dependencies": {
"commander": "^12.1.0",
"csv-stringify": "^6.5.2",
"fast-glob": "^3.3.2",
"marked": "^12.0.2",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@types/chai": "^4.3.17",
"@types/marked": "^6.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"chai": "^4.5.0",
"mocha": "^10.8.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}