-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 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
{
"name": "termex",
"version": "1.0.7",
"description": "Explore the file system from your terminal",
"main": "./dist/index.js",
"scripts": {
"start": "ts-node index.ts . --ignore",
"lint": "npx prettier . -w",
"build": "tsc index.ts --esModuleInterop true --allowJs true --outDir ./dist",
"build-exe": "pkg ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pranavbaburaj/termex.git"
},
"keywords": [
"cli",
"fs",
"terminal",
"explorer",
"file-explorer",
"tui"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pranavbaburaj/termex/issues"
},
"homepage": "https://github.com/pranavbaburaj/termex#readme",
"dependencies": {
"@octokit/core": "^3.5.1",
"@types/chalk": "^2.2.0",
"@types/inquirer": "^7.3.3",
"@types/node": "^15.12.2",
"axios": "^0.22.0",
"boxen": "^5.0.1",
"chalk": "^4.1.1",
"cli-highlight": "^2.1.11",
"console-png": "^1.2.1",
"discord-rpc": "^4.0.1",
"extract-zip": "^2.0.1",
"figlet": "^1.5.0",
"googleapis": "^39.2.0",
"inquirer": "^8.1.2",
"isbinaryfile": "^4.0.8",
"marked": "^2.1.1",
"marked-terminal": "^4.1.1",
"mime-types": "^2.1.31",
"open": "^8.2.0",
"table": "^6.7.1",
"terminal-image": "^2.0.0",
"typescript": "^4.3.4"
},
"devDependencies": {
"@types/discord-rpc": "^3.0.5",
"@types/figlet": "^1.5.1",
"@types/get-pixels": "^3.3.1",
"@types/image-size": "^0.8.0",
"@types/marked": "^2.0.3",
"@types/marked-terminal": "^3.1.1",
"get-pixels": "^3.3.3",
"image-size": "^1.0.0",
"oral-ts": "^1.0.2",
"ts-node": "^10.0.0"
},
"files": [
"bin",
"dist"
],
"bin": {
"termex": "./bin/termex"
}
}