forked from vitalets/google-translate-api
-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
65 lines (65 loc) · 1.56 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
{
"name": "google-translate-api-x",
"version": "10.7.2",
"description": "A free and unlimited API for Google Translate",
"main": "./index.cjs",
"module": "./index.cjs",
"types": "./index.d.ts",
"files": [
"lib",
"README.md",
"index.d.ts",
"index.cjs"
],
"scripts": {
"prepare": "git config core.hooksPath ./.hooks",
"lint": "eslint --ext .cjs,.mjs index.cjs lib test tools && tsd -f ./test",
"test": "mocha --parallel",
"release": "npm run lint && npm t && np --yolo --no-release-draft",
"update-langs": "node ./tools/updatelanguages.mjs"
},
"devDependencies": {
"eslint": "^8.25.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.6.0",
"mocha": "^10.7.3",
"np": "^7.6.2",
"tsd": "^0.31.2"
},
"repository": {
"type": "git",
"url": "https://github.com/AidanWelch/google-translate-api.git"
},
"keywords": [
"translate",
"translator",
"google",
"api",
"free",
"language",
"crossplatform",
"fetch",
"react",
"extension",
"web",
"tts",
"text-to-speech",
"speak"
],
"author": {
"name": "Aidan Welch",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AidanWelch/google-translate-api/issues"
},
"homepage": "https://github.com/AidanWelch/google-translate-api#readme",
"engines": {
"node": ">=14.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/AidanWelch"
}
}