Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mololab
GitHub Repository: mololab/json-translator
Path: blob/master/package.json
175 views
1
{
2
"version": "3.2.2",
3
"license": "MIT",
4
"main": "dist/index.js",
5
"description": "Translate your JSON file or object into another languages with Google Translate API",
6
"typings": "dist/index.d.ts",
7
"files": [
8
"dist",
9
"src"
10
],
11
"keywords": [
12
"free",
13
"i18n",
14
"json",
15
"translator",
16
"javascript",
17
"typescript",
18
"node",
19
"translate",
20
"internationalization"
21
],
22
"engines": {
23
"node": ">=16"
24
},
25
"repository": {
26
"type": "git",
27
"url": "git+https://github.com/ParvinEyvazov/json-translator.git"
28
},
29
"homepage": "https://github.com/ParvinEyvazov/json-translator#readme",
30
"scripts": {
31
"start": "tsdx watch",
32
"build": "tsdx build",
33
"test": "jest",
34
"lint": "tsdx lint",
35
"prepare": "tsdx build",
36
"size": "size-limit",
37
"analyze": "size-limit --why",
38
"test:watch": "jest --watch"
39
},
40
"husky": {
41
"hooks": {
42
"pre-commit": "tsdx lint"
43
}
44
},
45
"prettier": {
46
"printWidth": 80,
47
"semi": true,
48
"singleQuote": true,
49
"trailingComma": "es5"
50
},
51
"name": "@parvineyvazov/json-translator",
52
"author": "ParvinEyvazov",
53
"module": "dist/json-translator.esm.js",
54
"size-limit": [
55
{
56
"path": "dist/json-translator.cjs.production.min.js",
57
"limit": "10 KB"
58
},
59
{
60
"path": "dist/json-translator.esm.js",
61
"limit": "10 KB"
62
}
63
],
64
"bin": {
65
"jsontt": "bin/jsontt"
66
},
67
"devDependencies": {
68
"@types/http-proxy-agent": "^4.0.1",
69
"bing-translate-api": "^2.8.0",
70
"husky": "^7.0.4",
71
"jest": "^27.4.7",
72
"nock": "^13.4.0",
73
"ts-jest": "^27.1.3",
74
"tsdx": "^0.14.1",
75
"tslib": "^2.3.1",
76
"typescript": "^4.5.3"
77
},
78
"dependencies": {
79
"@iamtraction/google-translate": "^2.0.1",
80
"@types/bluebird": "^3.5.36",
81
"@types/filesystem": "^0.0.32",
82
"@vitalets/google-translate-api": "^9.2.0",
83
"axios": "^1.2.2",
84
"bing-translate-api": "^2.8.0",
85
"bluebird": "^3.7.2",
86
"commander": "^10.0.1",
87
"cwait": "^1.1.2",
88
"figlet": "^1.6.0",
89
"http-proxy-agent": "^5.0.0",
90
"inquirer": "^7.0.0",
91
"loading-cli": "^1.1.0",
92
"openai": "^4.52.3",
93
"yaml": "^2.3.2"
94
}
95
}
96
97