-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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
{
"name": "@kabeep/node-translate-cli",
"version": "1.2.0",
"type": "module",
"description": "A powerful, secure and feature-rich command line via Google Translation.",
"main": "./dist/cli.js",
"types": "./dist/cli.d.ts",
"files": [
"dist"
],
"bin": {
"translate": "./dist/cli.js"
},
"scripts": {
"dev": "ts-node bin/cli.ts",
"docs": "jsdoc -c jsdoc.config.json",
"lint": "xo src/**/*.ts --fix",
"pretest": "npm run lint",
"test": "vitest run",
"coverage": "vitest run --coverage",
"watch": "tsup --watch",
"watch:test": "vitest",
"build": "tsup --dts --treeshake smallest",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^22.5.0",
"@types/yargs": "^17.0.32",
"@vitest/coverage-istanbul": "^1.5.1",
"docdash": "^2.0.2",
"husky": "^9.0.11",
"jsdoc": "^4.0.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.5.1",
"xo": "^0.58.0"
},
"dependencies": {
"@kabeep/exception": "^1.2.3",
"@kabeep/node-translate": "^1.1.6",
"ora": "^8.0.1",
"os-locale": "^6.0.2",
"yargs": "^17.7.2"
},
"author": "Zhang Zixin (kabeep)",
"homepage": "https://github.com/kabeep/node-translate-cli#readme",
"repository": "[email protected]:kabeep/node-translate-cli.git",
"bugs": "https://github.com/kabeep/node-translate-cli/issue",
"keywords": [
"nodejs",
"node cli",
"translate",
"translate cli",
"google translate",
"google translate cli",
"node translate",
"node translate cli"
],
"engines": {
"node": ">=16"
},
"license": "MIT"
}