-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.42 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.42 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
{
"name": "translation-action",
"version": "4.2.3",
"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",
"clean": "rm -rf coverage && rm -rf temp",
"clean:unsafe": "rm -f package-lock.json && rm -rf node_modules && rm -rf dist"
},
"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.1",
"cross-fetch": "~4.1.0",
"deepl-node": "~1.27.0",
"google-translate-api-x": "~10.7.2",
"typed-rest-client": "~2.3.1"
},
"devDependencies": {
"@aws-sdk/client-translate": "~3.1041.0",
"@biomejs/biome": "~2.4.13",
"@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.3"
}
}