-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.33 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
{
"name": "multranslate",
"version": "0.5.2",
"description": "Cross-platform TUI for translating text in multiple translators simultaneously, with support for translation history and automatic language detection.",
"keywords": [
"TUI",
"Blessed",
"Translate",
"Google-Translate",
"DeepL",
"DeepLX",
"MyMemory",
"Reverso",
"Cursor",
"Custom-Cursor",
"SQLite",
"Better-SQLite3"
],
"author": "Lifailon",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Lifailon/multranslate"
},
"main": "multranslate.js",
"type": "module",
"scripts": {
"start": "node multranslate.js",
"dev": "node multranslate-native-cursor.js"
},
"dependencies": {
"axios": "^1.7.5",
"better-sqlite3": "^11.3.0",
"blessed": "^0.1.81",
"clipboardy": "^4.0.0",
"commander": "^12.1.0"
},
"bin": {
"multranslate": "multranslate.js"
},
"pkg": {
"assets": [
"node_modules/blessed/**/*",
"node_modules/axios/**/*",
"node_modules/clipboardy/**/*",
"node_modules/better-sqlite3/**/*",
"node_modules/url/**/*",
"node_modules/path/**/*",
"node_modules/fs/**/*",
"node_modules/commander/**/*"
],
"targets": [
"node18-win-x64",
"node18-linux-x64",
"node18-macos-x64"
]
}
}