-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.11 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.11 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
{
"name": "@iivu/up",
"version": "1.0.0-beta.4",
"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"
},
"keywords": [
"sftp",
"upload",
"command-line"
],
"files": [
"bin",
"dist"
],
"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",
"typescript": "^5.3.3"
},
"dependencies": {
"commander": "^12.0.0",
"glob": "^10.3.10",
"prompts": "^2.4.2",
"ssh2-sftp-client": "^10.0.3"
}
}