-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "google-translate-nodejs",
"version": "1.2.5",
"description": "A nodejs package for translating text using google translate for free! It also support batching translation!",
"homepage": "https://github.com/siamahnaf/google-translate-nodejs",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs"
},
"author": {
"name": "Siam Ahnaf",
"email": "[email protected]",
"url": "https://www.siamahnaf.com"
},
"license": "MIT",
"keywords": [
"nodejs",
"gogle-translate",
"nodejs-google-translate-free",
"free-translation",
"google translation api",
"typescript",
"translation",
"language translation"
],
"repository": {
"type": "git",
"directory": "https://github.com/siamahnaf/google-translate-nodejs",
"url": "https://github.com/siamahnaf/google-translate-nodejs"
},
"devDependencies": {
"@types/node": "^20.11.7",
"typescript": "^5.3.3"
}
}