-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "translation-action",
"version": "3.1.4",
"description": "This GitHub action translates any text from any language to any language.",
"main": "dist/index.js",
"scripts": {
"build": "ncc build -m src/index.ts",
"lint": "biome lint --write src",
"test": "jest --config=jest.config.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": "1.10.1",
"cross-fetch": "4.0.0",
"deepl-node": "1.13.1",
"google-translate-api-x": "10.7.1",
"typed-rest-client": "2.0.2"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/jest": "29.5.12",
"@vercel/ncc": "0.38.1",
"dotenv": "16.4.5",
"jest": "29.7.0",
"jest-circus": "29.7.0",
"mocha-param": "2.0.1",
"ts-jest": "29.2.5",
"typescript": "5.5.4"
},
"packageManager": "[email protected]"
}