@filebox/cli 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/logo.txt ADDED
@@ -0,0 +1,6 @@
1
+ ███████╗██╗██╗ ███████╗██████╗ ██████╗ ██╗ ██╗
2
+ ██╔════╝██║██║ ██╔════╝██╔══██╗██╔═══██╗╚██╗██╔╝
3
+ █████╗ ██║██║ █████╗ ██████╔╝██║ ██║ ╚███╔╝
4
+ ██╔══╝ ██║██║ ██╔══╝ ██╔══██╗██║ ██║ ██╔██╗
5
+ ██║ ██║███████╗███████╗██████╔╝╚██████╔╝██╔╝ ██╗
6
+ ╚═╝ ╚═╝╚══════╝╚══════╝╚═════╝ ╚═════╝ ╚═╝ ╚═╝
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@filebox/cli",
3
+ "version": "1.0.0",
4
+ "license": "MIT",
5
+ "description": "FileBox CLI — self-hosted file workspace command line tool",
6
+ "bin": {
7
+ "filebox": "./dist/index.js"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "files": [
11
+ "dist",
12
+ "LICENSE",
13
+ "README.md"
14
+ ],
15
+ "engines": {
16
+ "node": ">=18"
17
+ },
18
+ "keywords": [
19
+ "filebox",
20
+ "file-manager",
21
+ "webdav",
22
+ "s3",
23
+ "self-hosted",
24
+ "cli"
25
+ ],
26
+ "publishConfig": {
27
+ "access": "public"
28
+ },
29
+ "scripts": {
30
+ "build": "node esbuild.config.mjs",
31
+ "prepack": "node esbuild.config.mjs",
32
+ "prebuild:pkg": "node prebuild.mjs --all",
33
+ "build:pkg": "node prebuild.mjs --all && node build.js",
34
+ "pkg": "node prebuild.mjs --all && node build.js",
35
+ "package": "node prebuild.mjs --all && node build.js"
36
+ },
37
+ "dependencies": {
38
+ "@filebox/ftp-server": "^1.0.0",
39
+ "@filebox/runtime": "^1.0.0",
40
+ "@filebox/webdav-server": "^1.0.0",
41
+ "async": "^3.2.6",
42
+ "boxen": "^8.0.1",
43
+ "bytes": "^3.1.2",
44
+ "cli-table3": "^0.6.5",
45
+ "commander": "^12.1.0",
46
+ "follow-redirects": "^1.15.11",
47
+ "http-proxy-agent": "^7.0.2",
48
+ "https-proxy-agent": "^7.0.6",
49
+ "inquirer": "^12.7.0",
50
+ "micromatch": "^4.0.8",
51
+ "mime-types": "^3.0.2",
52
+ "socks-proxy-agent": "^8.0.5",
53
+ "term-size": "^3.0.2",
54
+ "winston": "^3.19.0",
55
+ "winston-daily-rotate-file": "^5.0.0"
56
+ },
57
+ "devDependencies": {
58
+ "@types/async": "^3.2.25",
59
+ "@types/bytes": "^3.1.5",
60
+ "@types/follow-redirects": "^1.14.4",
61
+ "@types/micromatch": "^4.0.10",
62
+ "@types/mime-types": "^2.1.4",
63
+ "@types/node": "^24.0.13",
64
+ "@yao-pkg/pkg": "^6.14.1",
65
+ "esbuild": "^0.24.0",
66
+ "esbuild-plugin-copy": "^2.1.1",
67
+ "pe-library": "^1.0.1",
68
+ "picocolors": "^1.1.1",
69
+ "resedit": "^2.0.3"
70
+ }
71
+ }