-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
78 lines (78 loc) · 1.99 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
{
"name": "attranslate",
"version": "2.1.3",
"description": "Semi-automated Text Translator for Websites and Apps",
"repository": {
"type": "git",
"url": "git+https://github.com/fkirc/attranslate.git"
},
"keywords": [
"semi-automated translation",
"openai-translate",
"google-translate",
"website translation",
"mobile app translation",
"i18n"
],
"license": "GPL",
"bugs": {
"url": "https://github.com/fkirc/attranslate/issues"
},
"homepage": "https://github.com/fkirc/attranslate#readme",
"bin": {
"attranslate": "bin/attranslate"
},
"main": "./dist/index.js",
"files": [
"bin/",
"dist/"
],
"scripts": {
"build": "npm run clean && tsc && npm link",
"clean": "rm -rf ./dist",
"test": "jest --testTimeout=10000",
"test:windows": "npm run test -- --config=test/windows.jest.config.js",
"test:generate_refs": "GENERATE_REFS=True npm run test",
"prepublishOnly": "git diff --exit-code"
},
"dependencies": {
"@google-cloud/translate": "^8.3.0",
"@types/semver": "^7.5.0",
"axios": "^1.7.2",
"clipboardy": "^2.3.0",
"commander": "^6.1.0",
"detect-indent": "^6.0.0",
"dotenv": "^16.3.1",
"gettext-parser": "^4.0.4",
"inquirer": "^7.3.3",
"messageformat-parser": "^4.1.0",
"openai": "^3.3.0",
"semver": "^7.5.4",
"typechat": "^0.0.10",
"xml2js": "https://github.com/fkirc/node-xml2js/tarball/680ee7ed2dad8b9ddacc37b5e4b4a671706e0bcf",
"yaml": "2.0.0-1"
},
"devDependencies": {
"@types/gettext-parser": "^4.0.0",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.162",
"@types/node": "^14.11.8",
"@types/node-fetch": "^2.1.6",
"@types/xml2js": "^0.4.5",
"jest": "^26.5.2",
"node-fetch": "^2.3.0",
"prettier": "^2.2.1",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"publishConfig": {
"access": "public"
},
"jest": {
"preset": "ts-jest",
"roots": [
"test"
]
}
}