-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.79 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
{
"name": "sftp-shell",
"version": "2.0.9",
"description": "Transfer files to/from FTP server over SFTP protocol",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/maxzz/sftp-shell.git"
},
"homepage": "https://github.com/maxzz/sftp-shell",
"dependencies": {
"chalk": "^4.0.0",
"command-line-args": "5.2.1",
"command-line-usage": "7.0.1",
"json5": "^2.2.3",
"mkdir-p": "^0.0.7",
"ssh2-sftp-client": "9.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.3",
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/node": "20.5.7",
"@types/ssh2": "^1.11.13",
"@types/ssh2-sftp-client": "^9.0.0",
"esbuild": "0.19.2",
"esbuild-native-node-modules-plugin": "^1.0.3",
"esbuild-plugin-d.ts": "^1.1.0",
"rollup": "^3.28.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"peerDependencies": {
"ssh2-sftp-client": "9.1.0"
},
"packageManager": "pnpm@8.7.5",
"files": [
"dist"
],
"_type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/types/app/api/index.d.ts",
"scripts": {
"dev": "tsc -w",
"step:make:es": "node esbuild.cjs",
"step:makebin": "pkg --targets latest -o dist/sshell build-es/index.js",
"build:exe": "pnpm step:make:es && pnpm step:makebin",
"build:lib": "rollup -c --bundleConfigAsCjs",
"build": "pnpm build:lib && pnpm build:exe"
}
}