fileuni 0.1.7-gui.0 → 0.1.7
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/README.md +17 -19
- package/package.json +3 -3
- package/scripts/fileuni-manifest.json +147 -22
package/README.md
CHANGED
|
@@ -1,48 +1,46 @@
|
|
|
1
|
-
# fileuni
|
|
1
|
+
# fileuni
|
|
2
2
|
|
|
3
|
-
FileUni
|
|
4
|
-
The package downloads the matching prebuilt
|
|
5
|
-
|
|
3
|
+
FileUni CLI distributed through npm as a single package.
|
|
4
|
+
The package downloads the matching prebuilt binary from GitHub Releases during `postinstall`.
|
|
5
|
+
|
|
6
|
+
The GUI channel is published separately as `fileuni@gui` and installs only the `fileuni-gui` launcher.
|
|
6
7
|
|
|
7
8
|
## Install
|
|
8
9
|
|
|
9
10
|
```bash
|
|
10
|
-
npm install fileuni
|
|
11
|
+
npm install fileuni
|
|
11
12
|
```
|
|
12
13
|
|
|
13
|
-
##
|
|
14
|
+
## GUI Channel
|
|
14
15
|
|
|
15
16
|
```bash
|
|
17
|
+
npm install fileuni@gui
|
|
16
18
|
npx fileuni-gui
|
|
17
19
|
```
|
|
18
20
|
|
|
19
|
-
##
|
|
20
|
-
|
|
21
|
-
- Windows x64
|
|
22
|
-
- Linux x64 (glibc)
|
|
23
|
-
- Linux arm64 (glibc)
|
|
24
|
-
- macOS Intel
|
|
25
|
-
- macOS Apple Silicon
|
|
21
|
+
## Run
|
|
26
22
|
|
|
27
|
-
|
|
23
|
+
```bash
|
|
24
|
+
npx fileuni --help
|
|
25
|
+
```
|
|
28
26
|
|
|
29
27
|
## Platform Override
|
|
30
28
|
|
|
31
29
|
The installer auto-detects the current platform.
|
|
32
|
-
You can override the target manually when
|
|
30
|
+
You can override the target manually when you need a specific Linux runtime variant.
|
|
33
31
|
|
|
34
32
|
Examples:
|
|
35
33
|
|
|
36
34
|
```bash
|
|
37
|
-
|
|
38
|
-
|
|
35
|
+
FILEUNI_NPM_LIBC=musl npm install fileuni
|
|
36
|
+
FILEUNI_NPM_TARGET=x86_64-unknown-linux-musl npm install fileuni
|
|
39
37
|
```
|
|
40
38
|
|
|
41
39
|
## Optional Controls
|
|
42
40
|
|
|
43
41
|
```bash
|
|
44
|
-
|
|
45
|
-
|
|
42
|
+
FILEUNI_NPM_SKIP_DOWNLOAD=1 npm install fileuni
|
|
43
|
+
FILEUNI_NPM_BASE_URL=https://github.com/FileUni/FileUni-Project npm install fileuni
|
|
46
44
|
```
|
|
47
45
|
|
|
48
46
|
## License
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fileuni",
|
|
3
|
-
"version": "0.1.7
|
|
4
|
-
"description": "FileUni
|
|
3
|
+
"version": "0.1.7",
|
|
4
|
+
"description": "FileUni CLI distributed through npm with on-demand platform binary downloads.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"LICENSE"
|
|
20
20
|
],
|
|
21
21
|
"bin": {
|
|
22
|
-
"fileuni
|
|
22
|
+
"fileuni": "bin/launcher.js"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
25
|
"postinstall": "node ./scripts/postinstall.cjs"
|
|
@@ -1,34 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"repository": "FileUni/FileUni-Project",
|
|
3
3
|
"release_tag": "FileUni-v0.1.7",
|
|
4
|
-
"version": "0.1.7
|
|
4
|
+
"version": "0.1.7",
|
|
5
5
|
"package": {
|
|
6
6
|
"name": "fileuni",
|
|
7
|
-
"description": "FileUni
|
|
7
|
+
"description": "FileUni CLI distributed through npm with on-demand platform binary downloads.",
|
|
8
8
|
"repository_directory": ".github/npm",
|
|
9
|
-
"bin_name": "fileuni
|
|
10
|
-
"display_name": "FileUni
|
|
11
|
-
"env_prefix": "
|
|
12
|
-
"npm_config_prefix": "
|
|
9
|
+
"bin_name": "fileuni",
|
|
10
|
+
"display_name": "FileUni CLI",
|
|
11
|
+
"env_prefix": "FILEUNI_NPM",
|
|
12
|
+
"npm_config_prefix": "fileuni"
|
|
13
13
|
},
|
|
14
14
|
"targets": [
|
|
15
15
|
{
|
|
16
|
-
"target": "x86_64-
|
|
17
|
-
"os": "
|
|
16
|
+
"target": "x86_64-unknown-linux-gnu",
|
|
17
|
+
"os": "linux",
|
|
18
18
|
"arch": "x64",
|
|
19
|
-
"
|
|
19
|
+
"libc": "gnu",
|
|
20
|
+
"asset_name": "FileUni-cli-x86_64-linux-gnu.zip",
|
|
20
21
|
"asset_format": "zip",
|
|
21
|
-
"installed_rel_path": "fileuni
|
|
22
|
+
"installed_rel_path": "fileuni",
|
|
22
23
|
"launch_strategy": "exec"
|
|
23
24
|
},
|
|
24
25
|
{
|
|
25
|
-
"target": "x86_64-unknown-linux-
|
|
26
|
+
"target": "x86_64-unknown-linux-musl",
|
|
26
27
|
"os": "linux",
|
|
27
28
|
"arch": "x64",
|
|
28
|
-
"libc": "
|
|
29
|
-
"asset_name": "FileUni-
|
|
29
|
+
"libc": "musl",
|
|
30
|
+
"asset_name": "FileUni-cli-x86_64-linux-musl.zip",
|
|
30
31
|
"asset_format": "zip",
|
|
31
|
-
"installed_rel_path": "fileuni
|
|
32
|
+
"installed_rel_path": "fileuni",
|
|
32
33
|
"launch_strategy": "exec"
|
|
33
34
|
},
|
|
34
35
|
{
|
|
@@ -36,28 +37,152 @@
|
|
|
36
37
|
"os": "linux",
|
|
37
38
|
"arch": "arm64",
|
|
38
39
|
"libc": "gnu",
|
|
39
|
-
"asset_name": "FileUni-
|
|
40
|
+
"asset_name": "FileUni-cli-aarch64-linux-gnu.zip",
|
|
41
|
+
"asset_format": "zip",
|
|
42
|
+
"installed_rel_path": "fileuni",
|
|
43
|
+
"launch_strategy": "exec"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"target": "aarch64-unknown-linux-musl",
|
|
47
|
+
"os": "linux",
|
|
48
|
+
"arch": "arm64",
|
|
49
|
+
"libc": "musl",
|
|
50
|
+
"asset_name": "FileUni-cli-aarch64-linux-musl.zip",
|
|
51
|
+
"asset_format": "zip",
|
|
52
|
+
"installed_rel_path": "fileuni",
|
|
53
|
+
"launch_strategy": "exec"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"target": "i686-unknown-linux-gnu",
|
|
57
|
+
"os": "linux",
|
|
58
|
+
"arch": "ia32",
|
|
59
|
+
"libc": "gnu",
|
|
60
|
+
"asset_name": "FileUni-cli-x86_32-linux-gnu.zip",
|
|
61
|
+
"asset_format": "zip",
|
|
62
|
+
"installed_rel_path": "fileuni",
|
|
63
|
+
"launch_strategy": "exec"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"target": "i686-unknown-linux-musl",
|
|
67
|
+
"os": "linux",
|
|
68
|
+
"arch": "ia32",
|
|
69
|
+
"libc": "musl",
|
|
70
|
+
"asset_name": "FileUni-cli-x86_32-linux-musl.zip",
|
|
71
|
+
"asset_format": "zip",
|
|
72
|
+
"installed_rel_path": "fileuni",
|
|
73
|
+
"launch_strategy": "exec"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"target": "arm-unknown-linux-gnueabi",
|
|
77
|
+
"os": "linux",
|
|
78
|
+
"arch": "arm",
|
|
79
|
+
"libc": "gnu",
|
|
80
|
+
"asset_name": "FileUni-cli-arm-linux-gnu.zip",
|
|
81
|
+
"asset_format": "zip",
|
|
82
|
+
"installed_rel_path": "fileuni",
|
|
83
|
+
"launch_strategy": "exec"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"target": "armv7-unknown-linux-musleabihf",
|
|
87
|
+
"os": "linux",
|
|
88
|
+
"arch": "arm",
|
|
89
|
+
"libc": "musl",
|
|
90
|
+
"asset_name": "FileUni-cli-armv7-linux-musl.zip",
|
|
91
|
+
"asset_format": "zip",
|
|
92
|
+
"installed_rel_path": "fileuni",
|
|
93
|
+
"launch_strategy": "exec"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"target": "riscv64gc-unknown-linux-gnu",
|
|
97
|
+
"os": "linux",
|
|
98
|
+
"arch": "riscv64",
|
|
99
|
+
"libc": "gnu",
|
|
100
|
+
"asset_name": "FileUni-cli-riscv64gc-linux-gnu.zip",
|
|
101
|
+
"asset_format": "zip",
|
|
102
|
+
"installed_rel_path": "fileuni",
|
|
103
|
+
"launch_strategy": "exec"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"target": "powerpc64le-unknown-linux-gnu",
|
|
107
|
+
"os": "linux",
|
|
108
|
+
"arch": "ppc64",
|
|
109
|
+
"libc": "gnu",
|
|
110
|
+
"asset_name": "FileUni-cli-powerpc64le-linux-gnu.zip",
|
|
111
|
+
"asset_format": "zip",
|
|
112
|
+
"installed_rel_path": "fileuni",
|
|
113
|
+
"launch_strategy": "exec"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"target": "x86_64-pc-windows-msvc",
|
|
117
|
+
"os": "win32",
|
|
118
|
+
"arch": "x64",
|
|
119
|
+
"asset_name": "FileUni-cli-x86_64-windows-msvc.exe.zip",
|
|
120
|
+
"asset_format": "zip",
|
|
121
|
+
"installed_rel_path": "fileuni.exe",
|
|
122
|
+
"launch_strategy": "exec"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"target": "i686-pc-windows-msvc",
|
|
126
|
+
"os": "win32",
|
|
127
|
+
"arch": "ia32",
|
|
128
|
+
"asset_name": "FileUni-cli-x86_32-windows-msvc.exe.zip",
|
|
40
129
|
"asset_format": "zip",
|
|
41
|
-
"installed_rel_path": "fileuni
|
|
130
|
+
"installed_rel_path": "fileuni.exe",
|
|
42
131
|
"launch_strategy": "exec"
|
|
43
132
|
},
|
|
44
133
|
{
|
|
45
134
|
"target": "x86_64-apple-darwin",
|
|
46
135
|
"os": "darwin",
|
|
47
136
|
"arch": "x64",
|
|
48
|
-
"asset_name": "FileUni-
|
|
137
|
+
"asset_name": "FileUni-cli-x86_64-macos-darwin.zip",
|
|
49
138
|
"asset_format": "zip",
|
|
50
|
-
"installed_rel_path": "
|
|
51
|
-
"launch_strategy": "
|
|
139
|
+
"installed_rel_path": "fileuni",
|
|
140
|
+
"launch_strategy": "exec"
|
|
52
141
|
},
|
|
53
142
|
{
|
|
54
143
|
"target": "aarch64-apple-darwin",
|
|
55
144
|
"os": "darwin",
|
|
56
145
|
"arch": "arm64",
|
|
57
|
-
"asset_name": "FileUni-
|
|
146
|
+
"asset_name": "FileUni-cli-aarch64-macos-darwin.zip",
|
|
58
147
|
"asset_format": "zip",
|
|
59
|
-
"installed_rel_path": "
|
|
60
|
-
"launch_strategy": "
|
|
148
|
+
"installed_rel_path": "fileuni",
|
|
149
|
+
"launch_strategy": "exec"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"target": "aarch64-linux-android",
|
|
153
|
+
"os": "android",
|
|
154
|
+
"arch": "arm64",
|
|
155
|
+
"asset_name": "FileUni-cli-aarch64-android-cli.zip",
|
|
156
|
+
"asset_format": "zip",
|
|
157
|
+
"installed_rel_path": "fileuni",
|
|
158
|
+
"launch_strategy": "exec"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"target": "armv7-linux-androideabi",
|
|
162
|
+
"os": "android",
|
|
163
|
+
"arch": "arm",
|
|
164
|
+
"asset_name": "FileUni-cli-armv7-android-cli.zip",
|
|
165
|
+
"asset_format": "zip",
|
|
166
|
+
"installed_rel_path": "fileuni",
|
|
167
|
+
"launch_strategy": "exec"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"target": "x86_64-linux-android",
|
|
171
|
+
"os": "android",
|
|
172
|
+
"arch": "x64",
|
|
173
|
+
"asset_name": "FileUni-cli-x86_64-android-cli.zip",
|
|
174
|
+
"asset_format": "zip",
|
|
175
|
+
"installed_rel_path": "fileuni",
|
|
176
|
+
"launch_strategy": "exec"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"target": "x86_64-unknown-freebsd",
|
|
180
|
+
"os": "freebsd",
|
|
181
|
+
"arch": "x64",
|
|
182
|
+
"asset_name": "FileUni-cli-x86_64-freebsd-freebsd.zip",
|
|
183
|
+
"asset_format": "zip",
|
|
184
|
+
"installed_rel_path": "fileuni",
|
|
185
|
+
"launch_strategy": "exec"
|
|
61
186
|
}
|
|
62
187
|
]
|
|
63
188
|
}
|