-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.93 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "auto-translate-json-library",
"version": "1.4.7",
"description": "Automatically translates JSON language files to other languages using Google Translate,AWS,Azure,DeepL,OpenAI or local OpenAI compatible server",
"main": "./build/src/index.js",
"bin": {
"auto-translate-json-library": "./build/src/bin/cli.js",
"atj": "./build/src/bin/cli.js"
},
"types": "./build/src/index.d.ts",
"files": [
"build",
"README.md"
],
"scripts": {
"prepare": "tsc",
"build": "tsc",
"build:run": "ts-node ./build/src/index.js --pivotTranslation=./tests/translations/en.json",
"debug": "ts-node src/index.ts --pivotTranslation=./tests/translations/en.json",
"lint": "biome check ./src",
"lint-fix": "biome check ./src --apply",
"lint-fix-all": "biome check --apply-unsafe ./src",
"format": "biome format ./src",
"format-fix": "biome format ./src --write",
"start": "ts-node src/index.ts"
},
"keywords": [
"translate",
"language",
"json",
"flutter",
"angular",
"ngx-translate",
"transloco",
"auto-translate-json",
"google",
"Azure",
"DeepL",
"OpenAI"
],
"author": "codegrue",
"repository": {
"type": "git",
"url": "https://github.com/topce/auto-translate-json-library"
},
"contributors": [
"codegrue",
"gajo357",
"topce",
"BenGMiles",
"stonega",
"alexei-petru"
],
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/minimist": "1.2.5",
"@types/node": "22.10.2",
"@types/yargs": "17.0.33",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"dependencies": {
"@aws-sdk/client-translate": "3.716.0",
"@google-cloud/translate": "8.5.0",
"axios": "1.7.9",
"deepl-node": "1.15.0",
"dotenv": "16.4.7",
"form-data": "4.0.1",
"minimist": "1.2.8",
"openai": "4.77.0",
"picocolors": "1.1.1",
"uuid": "11.0.3",
"yargs": "17.7.2"
}
}