-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.41 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "i18n-cloud-translator",
"description": "Automated translation of i18n files using cloud translation APIs",
"version": "0.6.0",
"author": "Mark Oleson",
"bin": "./bin/run.js",
"bugs": "https://github.com/https://github.com/fusion2004/i18n-cloud-translator/issues",
"dependencies": {
"@formatjs/icu-messageformat-parser": "^2.9.4",
"@google-cloud/translate": "^8.5.0",
"@oclif/core": "^4.0.33",
"@oclif/plugin-help": "^6.2.18",
"@oclif/plugin-plugins": "^5.4.19",
"@oclif/plugin-version": "^2.2.16",
"bottleneck": "^2.19.5",
"cheerio": "^1.0.0",
"convict": "^6.2.4",
"dotenv": "^16.4.5",
"fast-json-patch": "^3.1.1",
"js-yaml": "^4.1.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4.1.2",
"@types/chai": "^5.0.1",
"@types/convict": "^6.1.6",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"chai": "^5.1.2",
"eslint": "^9.16.0",
"eslint-config-oclif": "^5.2.2",
"eslint-config-oclif-typescript": "^3.1.12",
"eslint-config-prettier": "^9.1.0",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"oclif": "^4.15.30",
"prettier": "^3.4.1",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"homepage": "https://github.com/fusion2004/i18n-cloud-translator",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"oclif": {
"bin": "i18n-cloud-translator",
"dirname": "i18n-cloud-translator",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-version"
],
"commands": {
"strategy": "single",
"target": "./dist/index.js"
}
},
"repository": "https://github.com/fusion2004/i18n-cloud-translator",
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"types": "dist/index.d.ts",
"volta": {
"node": "22.11.0",
"yarn": "4.5.3"
}
}