-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.24 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": "what-is-x",
"version": "0.6.12",
"description": "a terminal translation tool",
"main": "./bin/whats.js",
"files": [
"dist/**/*"
],
"bin": {
"whats": "./dist/bin/whats.js"
},
"engines": {
"node": ">=7.6.0"
},
"scripts": {
"compile": "tsc",
"prepublishOnly": "yarn compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Styx11/whats.git"
},
"keywords": [
"translate",
"terminal",
"node",
"chinese",
"command line",
"cli",
"translation"
],
"author": "styx11 (https://github.com/Styx11)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Styx11/whats/issues"
},
"homepage": "https://github.com/Styx11/whats#readme",
"dependencies": {
"blueimp-md5": "^2.12.0",
"chalk": "^2.4.2",
"commander": "^8.3.0",
"is-chinese": "^1.2.9",
"js-sha256": "^0.9.0",
"log-symbols": "^3.0.0",
"ora": "^3.4.0",
"say": "^0.16.0",
"sqlite3": "^4.1.0",
"tty-table": "^2.8.2",
"xml2js": "^0.4.22"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/node": "^16.11.6",
"@types/sqlite3": "^3.1.7",
"typescript": "^4.4.4"
}
}