-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 922 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 922 Bytes
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
{
"name": "eecho",
"version": "0.2.0",
"type": "module",
"description": "",
"license": "",
"author": "",
"bin": {
"eecho": "./dist/entry/eecho.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/entry/eecho.ts",
"build": "tsup",
"check": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@xenova/transformers": "^2.17.2",
"chalk": "^5.6.2",
"clipboardy": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.11.30",
"prettier": "^3.7.4",
"tsup": "^8.5.1",
"tsx": "^4.8.0",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"translation",
"cli",
"japanese",
"english",
"transformer",
"machine-translation",
"offline",
"local"
]
}