-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
75 lines (75 loc) · 1.76 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
{
"name": "wiki-cli",
"version": "0.0.4",
"description": "Search Wikipedia and read summaries directly in your terminal!",
"preferGlobal": true,
"bin": {
"wiki": "./bin/wiki"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"watch": "tsc -w",
"debug": "node --inspect=0.0.0.0:13579 --nolazy -r ts-node/register ./src/index.ts"
},
"files": [
"dist/**/*",
"bin/**/*"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hexrcs/wiki-cli.git"
},
"keywords": [
"search",
"cli",
"answers",
"search-engine",
"wikipedia",
"wiki",
"ink",
"terminal"
],
"author": "Xiaoru Li",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/hexrcs/wiki-cli/issues"
},
"homepage": "https://github.com/hexrcs/wiki-cli#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"got": "^10.2.2",
"ink": "^2.6.0",
"ink-big-text": "^1.0.1",
"ink-box": "^1.0.0",
"ink-gradient": "^1.0.0",
"ink-spinner": "^3.0.1",
"ink-text-input": "^3.2.2",
"lodash": "^4.17.15",
"minimist": "^1.2.0",
"mobx": "^5.15.2",
"mobx-react-lite": "^1.5.2",
"open": "^7.0.0",
"react": "^16.12.0",
"terminal-image": "^0.2.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.4",
"wtf_wikipedia": "^7.8.1"
},
"devDependencies": {
"@types/cheerio": "^0.22.15",
"@types/got": "^9.6.9",
"@types/lodash": "^4.14.149",
"@types/minimist": "^1.2.0",
"@types/node": "^13.1.6",
"@types/react": "^16.9.17",
"eslint": "^6.8.0",
"husky": "^4.0.7",
"ink-testing-library": "^1.0.3",
"jest": "^24.9.0",
"jest-serializer-ansi": "^1.0.3",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"ts-jest": "^24.3.0"
}
}