-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
134 lines (134 loc) · 3.68 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "mdir.js",
"version": "1.4.0-beta+061",
"description": "Mdir.js is visual file manager. (text mode application)",
"type": "module",
"main": "./build/main.js",
"scripts": {
"clean": "rm -rf ./build",
"build": "tsc -p tsconfig.json",
"start": "tsc -p tsconfig.json && node ./build/main.js",
"debug": "tsc -p tsconfig.json && node --inspect-brk ./build/src/main.js",
"jest": "jest",
"test": "tsc -p tsconfig.json && node ./build/test/test.js",
"testimage": "tsc -p tsconfig.json && node ./build/test/imagetest.mjs",
"testeditor": "tsc -p tsconfig.json && node ./build/test/editortest.mjs",
"archivetest": "tsc -p tsconfig.json && node ./build/test/archive.mjs",
"colordemo": "tsc -p tsconfig.json && node ./build/test/colordemo.mjs",
"prepare": "tsc -p tsconfig.json",
"postinstall": "node ./scripts/post-install.js",
"pkg-linux": "pkg --target=node16-linux-x64 --out-path=./binary .",
"pkg-osx": "pkg --target=node16-macos-x64 --out-path=./binary .",
"pkg-win": "pkg --target=node16-win-x64 --out-path=./binary .",
"predocker": "npm pack",
"docker": "docker-compose build"
},
"author": "La Byoungyoung <[email protected]>",
"bugs": {
"url": "https://github.com/la9527/mdir.js/issues",
"email": "[email protected]"
},
"contributors": [
{
"name": "La Byoungyoung",
"email": "[email protected]"
}
],
"bin": {
"mdir": "bin/mdir.js"
},
"repository": {
"type": "git",
"url": "git://github.com/la9527/mdir.js.git"
},
"license": "BSD3",
"keywords": [
"MDir",
"MC",
"filemanager",
"LinM",
"CUI",
"Xterm",
"ssh",
"sftp"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"dependencies": {
"chalk": "^5.0.1",
"colors": "1.4.0",
"file-type": "19.0.0",
"fswin": "^3.18.918",
"i18next": "^21.8.9",
"i18next-cli-language-detector": "^1.1.5",
"i18next-fs-backend": "^1.1.4",
"iconv-lite": "^0.6.3",
"ip": "^2.0.1",
"jimp": "^0.16.13",
"jschardet": "^3.1.2",
"mime-types": "^2.1.35",
"moment": "^2.30.1",
"neo-blessed": "^0.2.0",
"node-machine-id": "^1.1.12",
"node-pty-prebuilt-multiarch": "^0.10.1-pre.5",
"node-stream-zip": "^1.15.0",
"os-locale": "^6.0.2",
"socks": "^2.8.1",
"sprintf-js": "^1.1.2",
"ssh2": "^1.15.0",
"supports-color": "^9.2.2",
"tar-fs": "^3.0.6",
"tar-stream": "^2.2.0",
"term.js": "0.0.7",
"unbzip2-stream": "^1.4.3",
"unzip-stream": "^0.3.0",
"which": "^2.0.2",
"winston": "^3.13.0",
"winston-daily-rotate-file": "~4.7.1",
"xterm": "4.18.0",
"yargs": "^17.5.1",
"yauzl": "^2.10.0",
"yazl": "^2.5.1",
"zip-stream": "^4.1.0"
},
"optionalDependencies": {
"lzma-native": "8.0.6"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/node": "^7.17.10",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@types/jest": "^28.1.1",
"@types/node": "20.12.12",
"@types/sprintf-js": "^1.1.2",
"@types/tar-stream": "^2.1.0",
"@types/yargs": "^15.0.5",
"@types/yauzl": "^2.9.1",
"@types/yazl": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-jest": "^28.1.3",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^26.9.0",
"jest": "^28.1.1",
"jest-resolve": "^28.1.1",
"jest-watch-typeahead": "1.1.0",
"node-gyp": "^9.4.1",
"node-pty": "^0.10.1",
"pkg": "^5.8.1",
"typescript": "^4.9.5"
},
"pkg": {
"scripts": [
"build/**/*.js"
],
"assets": [
"node_modules/neo-blessed/**"
],
"tagets": [
"node16"
]
}
}