-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.36 KB
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
{
"name": "@iivu/up",
"version": "1.0.0",
"description": "up is a command-line tool, which can upload your files to sftp with simple commands.",
"bin": {
"up": "bin/cli.mjs"
},
"type": "module",
"scripts": {
"build": "rimraf ./bin/* && rollup -c",
"test": "vitest run"
},
"keywords": [
"sftp",
"upload",
"command-line"
],
"files": [
"bin"
],
"author": "Leo Cheung <leozhang621@gmail.com>",
"homepage": "https://github.com/iivu/up#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/iivu/up.git"
},
"bugs": {
"url": "https://github.com/iivu/up/issues"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.20",
"@types/prompts": "^2.4.9",
"@types/ssh2-sftp-client": "^9.0.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.12.0",
"tslib": "^2.6.2",
"tsx": "^4.22.4",
"typescript": "^5.3.3",
"vitest": "^4.1.9"
},
"dependencies": {
"commander": "^12.0.0",
"glob": "^10.3.10",
"minimatch": "^9.0.3",
"prompts": "^2.4.2",
"ssh2-sftp-client": "^10.0.3"
},
"packageManager": "pnpm@10.33.3+sha512.a19744364a7e248b92657a4ca5973f9354d21caf982579674b1c539f32c7420c47138ad8b1254df07aba9bc782d9b3029e3db34d5dbff974326eb74dac8ff489"
}