-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.32 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
{
"name": "translation-action",
"version": "4.2.2",
"description": "This GitHub action translates any text from any language to any language.",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node24 --outfile=dist/index.js",
"lint": "biome lint --write src",
"test": "jest --config=jest.config.json --json --outputFile=jest-report.json --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabasoad/translation-action.git"
},
"keywords": [
"actions",
"translation",
"translator",
"lang"
],
"author": "Yevhen Fabizhevskyi",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabasoad/translation-action/issues"
},
"homepage": "https://github.com/fabasoad/translation-action#readme",
"dependencies": {
"@actions/core": "~3.0.0",
"cross-fetch": "~4.1.0",
"deepl-node": "~1.26.0",
"google-translate-api-x": "~10.7.2",
"typed-rest-client": "~2.3.0"
},
"devDependencies": {
"@aws-sdk/client-translate": "~3.1029.0",
"@biomejs/biome": "~2.4.12",
"@types/jest": "~30.0.0",
"dotenv": "~17.4.2",
"esbuild": "~0.28.0",
"jest": "~30.3.0",
"jest-circus": "~30.3.0",
"ts-jest": "~29.4.9",
"typescript": "~6.0.2"
},
"packageManager": "yarn@4.13.0"
}