@visulima/tui 1.0.0 → 1.0.2
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/CHANGELOG.md +4 -0
- package/index.js +592 -541
- package/package.json +29 -29
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## @visulima/tui [1.0.2](https://github.com/visulima/visulima/compare/%40visulima%2Ftui%401.0.1...%40visulima%2Ftui%401.0.2) (2026-07-15)
|
|
2
|
+
|
|
3
|
+
## @visulima/tui [1.0.1](https://github.com/visulima/visulima/compare/%40visulima%2Ftui%401.0.0...%40visulima%2Ftui%401.0.1) (2026-07-15)
|
|
4
|
+
|
|
1
5
|
## @visulima/tui 1.0.0 (2026-07-03)
|
|
2
6
|
|
|
3
7
|
### ⚠ BREAKING CHANGES
|
package/index.js
CHANGED
|
@@ -4,530 +4,582 @@
|
|
|
4
4
|
/* auto-generated by NAPI-RS */
|
|
5
5
|
|
|
6
6
|
import { createRequire } from 'node:module'
|
|
7
|
-
const require = createRequire(import.meta.url)
|
|
8
|
-
const __dirname = new URL(
|
|
7
|
+
const require = createRequire(import.meta.url);
|
|
8
|
+
const __dirname = new URL(".", import.meta.url).pathname;
|
|
9
9
|
|
|
10
|
-
const { readFileSync } = require(
|
|
11
|
-
let nativeBinding = null
|
|
12
|
-
const loadErrors = []
|
|
10
|
+
const { readFileSync } = require("node:fs");
|
|
11
|
+
let nativeBinding = null;
|
|
12
|
+
const loadErrors = [];
|
|
13
13
|
|
|
14
14
|
const isMusl = () => {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
15
|
+
let musl = false;
|
|
16
|
+
if (process.platform === "linux") {
|
|
17
|
+
musl = isMuslFromFilesystem();
|
|
18
|
+
if (musl === null) {
|
|
19
|
+
musl = isMuslFromReport();
|
|
20
|
+
}
|
|
21
|
+
if (musl === null) {
|
|
22
|
+
musl = isMuslFromChildProcess();
|
|
23
|
+
}
|
|
23
24
|
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
25
|
+
return musl;
|
|
26
|
+
};
|
|
27
27
|
|
|
28
|
-
const isFileMusl = (f) => f.includes(
|
|
28
|
+
const isFileMusl = (f) => f.includes("libc.musl-") || f.includes("ld-musl-");
|
|
29
29
|
|
|
30
30
|
const isMuslFromFilesystem = () => {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
31
|
+
try {
|
|
32
|
+
return readFileSync("/usr/bin/ldd", "utf-8").includes("musl");
|
|
33
|
+
} catch {
|
|
34
|
+
return null;
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
37
|
|
|
38
38
|
const isMuslFromReport = () => {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}
|
|
44
|
-
if (!report) {
|
|
45
|
-
return null
|
|
46
|
-
}
|
|
47
|
-
if (report.header && report.header.glibcVersionRuntime) {
|
|
48
|
-
return false
|
|
49
|
-
}
|
|
50
|
-
if (Array.isArray(report.sharedObjects)) {
|
|
51
|
-
if (report.sharedObjects.some(isFileMusl)) {
|
|
52
|
-
return true
|
|
39
|
+
let report = null;
|
|
40
|
+
if (typeof process.report?.getReport === "function") {
|
|
41
|
+
process.report.excludeNetwork = true;
|
|
42
|
+
report = process.report.getReport();
|
|
53
43
|
}
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
const isMuslFromChildProcess = () => {
|
|
59
|
-
try {
|
|
60
|
-
return require('child_process').execSync('ldd --version', { encoding: 'utf8' }).includes('musl')
|
|
61
|
-
} catch (e) {
|
|
62
|
-
// If we reach this case, we don't know if the system is musl or not, so is better to just fallback to false
|
|
63
|
-
return false
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
function requireNative() {
|
|
68
|
-
if (process.env.NAPI_RS_NATIVE_LIBRARY_PATH) {
|
|
69
|
-
try {
|
|
70
|
-
return require(process.env.NAPI_RS_NATIVE_LIBRARY_PATH);
|
|
71
|
-
} catch (err) {
|
|
72
|
-
loadErrors.push(err)
|
|
44
|
+
if (!report) {
|
|
45
|
+
return null;
|
|
73
46
|
}
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
try {
|
|
77
|
-
return require('./tui-native.android-arm64.node')
|
|
78
|
-
} catch (e) {
|
|
79
|
-
loadErrors.push(e)
|
|
80
|
-
}
|
|
81
|
-
try {
|
|
82
|
-
const binding = require('@visulima/tui-binding-android-arm64')
|
|
83
|
-
const bindingPackageVersion = require('@visulima/tui-binding-android-arm64/package.json').version
|
|
84
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
85
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
86
|
-
}
|
|
87
|
-
return binding
|
|
88
|
-
} catch (e) {
|
|
89
|
-
loadErrors.push(e)
|
|
90
|
-
}
|
|
91
|
-
} else if (process.arch === 'arm') {
|
|
92
|
-
try {
|
|
93
|
-
return require('./tui-native.android-arm-eabi.node')
|
|
94
|
-
} catch (e) {
|
|
95
|
-
loadErrors.push(e)
|
|
96
|
-
}
|
|
97
|
-
try {
|
|
98
|
-
const binding = require('@visulima/tui-binding-android-arm-eabi')
|
|
99
|
-
const bindingPackageVersion = require('@visulima/tui-binding-android-arm-eabi/package.json').version
|
|
100
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
101
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
102
|
-
}
|
|
103
|
-
return binding
|
|
104
|
-
} catch (e) {
|
|
105
|
-
loadErrors.push(e)
|
|
106
|
-
}
|
|
107
|
-
} else {
|
|
108
|
-
loadErrors.push(new Error(`Unsupported architecture on Android ${process.arch}`))
|
|
47
|
+
if (report.header && report.header.glibcVersionRuntime) {
|
|
48
|
+
return false;
|
|
109
49
|
}
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
try {
|
|
114
|
-
return require('./tui-native.win32-x64-gnu.node')
|
|
115
|
-
} catch (e) {
|
|
116
|
-
loadErrors.push(e)
|
|
117
|
-
}
|
|
118
|
-
try {
|
|
119
|
-
const binding = require('@visulima/tui-binding-win32-x64-gnu')
|
|
120
|
-
const bindingPackageVersion = require('@visulima/tui-binding-win32-x64-gnu/package.json').version
|
|
121
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
122
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
123
|
-
}
|
|
124
|
-
return binding
|
|
125
|
-
} catch (e) {
|
|
126
|
-
loadErrors.push(e)
|
|
127
|
-
}
|
|
128
|
-
} else {
|
|
129
|
-
try {
|
|
130
|
-
return require('./tui-native.win32-x64-msvc.node')
|
|
131
|
-
} catch (e) {
|
|
132
|
-
loadErrors.push(e)
|
|
133
|
-
}
|
|
134
|
-
try {
|
|
135
|
-
const binding = require('@visulima/tui-binding-win32-x64-msvc')
|
|
136
|
-
const bindingPackageVersion = require('@visulima/tui-binding-win32-x64-msvc/package.json').version
|
|
137
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
138
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
50
|
+
if (Array.isArray(report.sharedObjects)) {
|
|
51
|
+
if (report.sharedObjects.some(isFileMusl)) {
|
|
52
|
+
return true;
|
|
139
53
|
}
|
|
140
|
-
return binding
|
|
141
|
-
} catch (e) {
|
|
142
|
-
loadErrors.push(e)
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
} else if (process.arch === 'ia32') {
|
|
146
|
-
try {
|
|
147
|
-
return require('./tui-native.win32-ia32-msvc.node')
|
|
148
|
-
} catch (e) {
|
|
149
|
-
loadErrors.push(e)
|
|
150
|
-
}
|
|
151
|
-
try {
|
|
152
|
-
const binding = require('@visulima/tui-binding-win32-ia32-msvc')
|
|
153
|
-
const bindingPackageVersion = require('@visulima/tui-binding-win32-ia32-msvc/package.json').version
|
|
154
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
155
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
156
|
-
}
|
|
157
|
-
return binding
|
|
158
|
-
} catch (e) {
|
|
159
|
-
loadErrors.push(e)
|
|
160
|
-
}
|
|
161
|
-
} else if (process.arch === 'arm64') {
|
|
162
|
-
try {
|
|
163
|
-
return require('./tui-native.win32-arm64-msvc.node')
|
|
164
|
-
} catch (e) {
|
|
165
|
-
loadErrors.push(e)
|
|
166
|
-
}
|
|
167
|
-
try {
|
|
168
|
-
const binding = require('@visulima/tui-binding-win32-arm64-msvc')
|
|
169
|
-
const bindingPackageVersion = require('@visulima/tui-binding-win32-arm64-msvc/package.json').version
|
|
170
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
171
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
172
|
-
}
|
|
173
|
-
return binding
|
|
174
|
-
} catch (e) {
|
|
175
|
-
loadErrors.push(e)
|
|
176
|
-
}
|
|
177
|
-
} else {
|
|
178
|
-
loadErrors.push(new Error(`Unsupported architecture on Windows: ${process.arch}`))
|
|
179
|
-
}
|
|
180
|
-
} else if (process.platform === 'darwin') {
|
|
181
|
-
try {
|
|
182
|
-
return require('./tui-native.darwin-universal.node')
|
|
183
|
-
} catch (e) {
|
|
184
|
-
loadErrors.push(e)
|
|
185
54
|
}
|
|
55
|
+
return false;
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
const isMuslFromChildProcess = () => {
|
|
186
59
|
try {
|
|
187
|
-
|
|
188
|
-
const bindingPackageVersion = require('@visulima/tui-binding-darwin-universal/package.json').version
|
|
189
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
190
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
191
|
-
}
|
|
192
|
-
return binding
|
|
60
|
+
return require("child_process").execSync("ldd --version", { encoding: "utf8" }).includes("musl");
|
|
193
61
|
} catch (e) {
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
if (process.arch === 'x64') {
|
|
197
|
-
try {
|
|
198
|
-
return require('./tui-native.darwin-x64.node')
|
|
199
|
-
} catch (e) {
|
|
200
|
-
loadErrors.push(e)
|
|
201
|
-
}
|
|
202
|
-
try {
|
|
203
|
-
const binding = require('@visulima/tui-binding-darwin-x64')
|
|
204
|
-
const bindingPackageVersion = require('@visulima/tui-binding-darwin-x64/package.json').version
|
|
205
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
206
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
207
|
-
}
|
|
208
|
-
return binding
|
|
209
|
-
} catch (e) {
|
|
210
|
-
loadErrors.push(e)
|
|
211
|
-
}
|
|
212
|
-
} else if (process.arch === 'arm64') {
|
|
213
|
-
try {
|
|
214
|
-
return require('./tui-native.darwin-arm64.node')
|
|
215
|
-
} catch (e) {
|
|
216
|
-
loadErrors.push(e)
|
|
217
|
-
}
|
|
218
|
-
try {
|
|
219
|
-
const binding = require('@visulima/tui-binding-darwin-arm64')
|
|
220
|
-
const bindingPackageVersion = require('@visulima/tui-binding-darwin-arm64/package.json').version
|
|
221
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
222
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
223
|
-
}
|
|
224
|
-
return binding
|
|
225
|
-
} catch (e) {
|
|
226
|
-
loadErrors.push(e)
|
|
227
|
-
}
|
|
228
|
-
} else {
|
|
229
|
-
loadErrors.push(new Error(`Unsupported architecture on macOS: ${process.arch}`))
|
|
230
|
-
}
|
|
231
|
-
} else if (process.platform === 'freebsd') {
|
|
232
|
-
if (process.arch === 'x64') {
|
|
233
|
-
try {
|
|
234
|
-
return require('./tui-native.freebsd-x64.node')
|
|
235
|
-
} catch (e) {
|
|
236
|
-
loadErrors.push(e)
|
|
237
|
-
}
|
|
238
|
-
try {
|
|
239
|
-
const binding = require('@visulima/tui-binding-freebsd-x64')
|
|
240
|
-
const bindingPackageVersion = require('@visulima/tui-binding-freebsd-x64/package.json').version
|
|
241
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
242
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
243
|
-
}
|
|
244
|
-
return binding
|
|
245
|
-
} catch (e) {
|
|
246
|
-
loadErrors.push(e)
|
|
247
|
-
}
|
|
248
|
-
} else if (process.arch === 'arm64') {
|
|
249
|
-
try {
|
|
250
|
-
return require('./tui-native.freebsd-arm64.node')
|
|
251
|
-
} catch (e) {
|
|
252
|
-
loadErrors.push(e)
|
|
253
|
-
}
|
|
254
|
-
try {
|
|
255
|
-
const binding = require('@visulima/tui-binding-freebsd-arm64')
|
|
256
|
-
const bindingPackageVersion = require('@visulima/tui-binding-freebsd-arm64/package.json').version
|
|
257
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
258
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
259
|
-
}
|
|
260
|
-
return binding
|
|
261
|
-
} catch (e) {
|
|
262
|
-
loadErrors.push(e)
|
|
263
|
-
}
|
|
264
|
-
} else {
|
|
265
|
-
loadErrors.push(new Error(`Unsupported architecture on FreeBSD: ${process.arch}`))
|
|
62
|
+
// If we reach this case, we don't know if the system is musl or not, so is better to just fallback to false
|
|
63
|
+
return false;
|
|
266
64
|
}
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
return require('./tui-native.linux-x64-musl.node')
|
|
272
|
-
} catch (e) {
|
|
273
|
-
loadErrors.push(e)
|
|
274
|
-
}
|
|
275
|
-
try {
|
|
276
|
-
const binding = require('@visulima/tui-binding-linux-x64-musl')
|
|
277
|
-
const bindingPackageVersion = require('@visulima/tui-binding-linux-x64-musl/package.json').version
|
|
278
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
279
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
280
|
-
}
|
|
281
|
-
return binding
|
|
282
|
-
} catch (e) {
|
|
283
|
-
loadErrors.push(e)
|
|
284
|
-
}
|
|
285
|
-
} else {
|
|
286
|
-
try {
|
|
287
|
-
return require('./tui-native.linux-x64-gnu.node')
|
|
288
|
-
} catch (e) {
|
|
289
|
-
loadErrors.push(e)
|
|
290
|
-
}
|
|
291
|
-
try {
|
|
292
|
-
const binding = require('@visulima/tui-binding-linux-x64-gnu')
|
|
293
|
-
const bindingPackageVersion = require('@visulima/tui-binding-linux-x64-gnu/package.json').version
|
|
294
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
295
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
296
|
-
}
|
|
297
|
-
return binding
|
|
298
|
-
} catch (e) {
|
|
299
|
-
loadErrors.push(e)
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
} else if (process.arch === 'arm64') {
|
|
303
|
-
if (isMusl()) {
|
|
304
|
-
try {
|
|
305
|
-
return require('./tui-native.linux-arm64-musl.node')
|
|
306
|
-
} catch (e) {
|
|
307
|
-
loadErrors.push(e)
|
|
308
|
-
}
|
|
309
|
-
try {
|
|
310
|
-
const binding = require('@visulima/tui-binding-linux-arm64-musl')
|
|
311
|
-
const bindingPackageVersion = require('@visulima/tui-binding-linux-arm64-musl/package.json').version
|
|
312
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
313
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
314
|
-
}
|
|
315
|
-
return binding
|
|
316
|
-
} catch (e) {
|
|
317
|
-
loadErrors.push(e)
|
|
318
|
-
}
|
|
319
|
-
} else {
|
|
320
|
-
try {
|
|
321
|
-
return require('./tui-native.linux-arm64-gnu.node')
|
|
322
|
-
} catch (e) {
|
|
323
|
-
loadErrors.push(e)
|
|
324
|
-
}
|
|
325
|
-
try {
|
|
326
|
-
const binding = require('@visulima/tui-binding-linux-arm64-gnu')
|
|
327
|
-
const bindingPackageVersion = require('@visulima/tui-binding-linux-arm64-gnu/package.json').version
|
|
328
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
329
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
330
|
-
}
|
|
331
|
-
return binding
|
|
332
|
-
} catch (e) {
|
|
333
|
-
loadErrors.push(e)
|
|
334
|
-
}
|
|
335
|
-
}
|
|
336
|
-
} else if (process.arch === 'arm') {
|
|
337
|
-
if (isMusl()) {
|
|
338
|
-
try {
|
|
339
|
-
return require('./tui-native.linux-arm-musleabihf.node')
|
|
340
|
-
} catch (e) {
|
|
341
|
-
loadErrors.push(e)
|
|
342
|
-
}
|
|
343
|
-
try {
|
|
344
|
-
const binding = require('@visulima/tui-binding-linux-arm-musleabihf')
|
|
345
|
-
const bindingPackageVersion = require('@visulima/tui-binding-linux-arm-musleabihf/package.json').version
|
|
346
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
347
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
348
|
-
}
|
|
349
|
-
return binding
|
|
350
|
-
} catch (e) {
|
|
351
|
-
loadErrors.push(e)
|
|
352
|
-
}
|
|
353
|
-
} else {
|
|
354
|
-
try {
|
|
355
|
-
return require('./tui-native.linux-arm-gnueabihf.node')
|
|
356
|
-
} catch (e) {
|
|
357
|
-
loadErrors.push(e)
|
|
358
|
-
}
|
|
359
|
-
try {
|
|
360
|
-
const binding = require('@visulima/tui-binding-linux-arm-gnueabihf')
|
|
361
|
-
const bindingPackageVersion = require('@visulima/tui-binding-linux-arm-gnueabihf/package.json').version
|
|
362
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
363
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
364
|
-
}
|
|
365
|
-
return binding
|
|
366
|
-
} catch (e) {
|
|
367
|
-
loadErrors.push(e)
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
} else if (process.arch === 'loong64') {
|
|
371
|
-
if (isMusl()) {
|
|
372
|
-
try {
|
|
373
|
-
return require('./tui-native.linux-loong64-musl.node')
|
|
374
|
-
} catch (e) {
|
|
375
|
-
loadErrors.push(e)
|
|
376
|
-
}
|
|
377
|
-
try {
|
|
378
|
-
const binding = require('@visulima/tui-binding-linux-loong64-musl')
|
|
379
|
-
const bindingPackageVersion = require('@visulima/tui-binding-linux-loong64-musl/package.json').version
|
|
380
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
381
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
382
|
-
}
|
|
383
|
-
return binding
|
|
384
|
-
} catch (e) {
|
|
385
|
-
loadErrors.push(e)
|
|
386
|
-
}
|
|
387
|
-
} else {
|
|
388
|
-
try {
|
|
389
|
-
return require('./tui-native.linux-loong64-gnu.node')
|
|
390
|
-
} catch (e) {
|
|
391
|
-
loadErrors.push(e)
|
|
392
|
-
}
|
|
393
|
-
try {
|
|
394
|
-
const binding = require('@visulima/tui-binding-linux-loong64-gnu')
|
|
395
|
-
const bindingPackageVersion = require('@visulima/tui-binding-linux-loong64-gnu/package.json').version
|
|
396
|
-
if (bindingPackageVersion !== '1.0.0-alpha.27' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
397
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
398
|
-
}
|
|
399
|
-
return binding
|
|
400
|
-
} catch (e) {
|
|
401
|
-
loadErrors.push(e)
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
} else if (process.arch === 'riscv64') {
|
|
405
|
-
if (isMusl()) {
|
|
406
|
-
try {
|
|
407
|
-
return require('./tui-native.linux-riscv64-musl.node')
|
|
408
|
-
} catch (e) {
|
|
409
|
-
loadErrors.push(e)
|
|
410
|
-
}
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
function requireNative() {
|
|
68
|
+
if (process.env.NAPI_RS_NATIVE_LIBRARY_PATH) {
|
|
411
69
|
try {
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
70
|
+
return require(process.env.NAPI_RS_NATIVE_LIBRARY_PATH);
|
|
71
|
+
} catch (err) {
|
|
72
|
+
loadErrors.push(err);
|
|
73
|
+
}
|
|
74
|
+
} else if (process.platform === "android") {
|
|
75
|
+
if (process.arch === "arm64") {
|
|
76
|
+
try {
|
|
77
|
+
return require("./tui-native.android-arm64.node");
|
|
78
|
+
} catch (e) {
|
|
79
|
+
loadErrors.push(e);
|
|
80
|
+
}
|
|
81
|
+
try {
|
|
82
|
+
const binding = require("@visulima/tui-binding-android-arm64");
|
|
83
|
+
const bindingPackageVersion = require("@visulima/tui-binding-android-arm64/package.json").version;
|
|
84
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
85
|
+
throw new Error(
|
|
86
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
87
|
+
);
|
|
88
|
+
}
|
|
89
|
+
return binding;
|
|
90
|
+
} catch (e) {
|
|
91
|
+
loadErrors.push(e);
|
|
92
|
+
}
|
|
93
|
+
} else if (process.arch === "arm") {
|
|
94
|
+
try {
|
|
95
|
+
return require("./tui-native.android-arm-eabi.node");
|
|
96
|
+
} catch (e) {
|
|
97
|
+
loadErrors.push(e);
|
|
98
|
+
}
|
|
99
|
+
try {
|
|
100
|
+
const binding = require("@visulima/tui-binding-android-arm-eabi");
|
|
101
|
+
const bindingPackageVersion = require("@visulima/tui-binding-android-arm-eabi/package.json").version;
|
|
102
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
103
|
+
throw new Error(
|
|
104
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
105
|
+
);
|
|
106
|
+
}
|
|
107
|
+
return binding;
|
|
108
|
+
} catch (e) {
|
|
109
|
+
loadErrors.push(e);
|
|
110
|
+
}
|
|
111
|
+
} else {
|
|
112
|
+
loadErrors.push(new Error(`Unsupported architecture on Android ${process.arch}`));
|
|
113
|
+
}
|
|
114
|
+
} else if (process.platform === "win32") {
|
|
115
|
+
if (process.arch === "x64") {
|
|
116
|
+
if (process.config?.variables?.shlib_suffix === "dll.a" || process.config?.variables?.node_target_type === "shared_library") {
|
|
117
|
+
try {
|
|
118
|
+
return require("./tui-native.win32-x64-gnu.node");
|
|
119
|
+
} catch (e) {
|
|
120
|
+
loadErrors.push(e);
|
|
121
|
+
}
|
|
122
|
+
try {
|
|
123
|
+
const binding = require("@visulima/tui-binding-win32-x64-gnu");
|
|
124
|
+
const bindingPackageVersion = require("@visulima/tui-binding-win32-x64-gnu/package.json").version;
|
|
125
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
126
|
+
throw new Error(
|
|
127
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
128
|
+
);
|
|
129
|
+
}
|
|
130
|
+
return binding;
|
|
131
|
+
} catch (e) {
|
|
132
|
+
loadErrors.push(e);
|
|
133
|
+
}
|
|
134
|
+
} else {
|
|
135
|
+
try {
|
|
136
|
+
return require("./tui-native.win32-x64-msvc.node");
|
|
137
|
+
} catch (e) {
|
|
138
|
+
loadErrors.push(e);
|
|
139
|
+
}
|
|
140
|
+
try {
|
|
141
|
+
const binding = require("@visulima/tui-binding-win32-x64-msvc");
|
|
142
|
+
const bindingPackageVersion = require("@visulima/tui-binding-win32-x64-msvc/package.json").version;
|
|
143
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
144
|
+
throw new Error(
|
|
145
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
146
|
+
);
|
|
147
|
+
}
|
|
148
|
+
return binding;
|
|
149
|
+
} catch (e) {
|
|
150
|
+
loadErrors.push(e);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
} else if (process.arch === "ia32") {
|
|
154
|
+
try {
|
|
155
|
+
return require("./tui-native.win32-ia32-msvc.node");
|
|
156
|
+
} catch (e) {
|
|
157
|
+
loadErrors.push(e);
|
|
158
|
+
}
|
|
159
|
+
try {
|
|
160
|
+
const binding = require("@visulima/tui-binding-win32-ia32-msvc");
|
|
161
|
+
const bindingPackageVersion = require("@visulima/tui-binding-win32-ia32-msvc/package.json").version;
|
|
162
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
163
|
+
throw new Error(
|
|
164
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
165
|
+
);
|
|
166
|
+
}
|
|
167
|
+
return binding;
|
|
168
|
+
} catch (e) {
|
|
169
|
+
loadErrors.push(e);
|
|
170
|
+
}
|
|
171
|
+
} else if (process.arch === "arm64") {
|
|
172
|
+
try {
|
|
173
|
+
return require("./tui-native.win32-arm64-msvc.node");
|
|
174
|
+
} catch (e) {
|
|
175
|
+
loadErrors.push(e);
|
|
176
|
+
}
|
|
177
|
+
try {
|
|
178
|
+
const binding = require("@visulima/tui-binding-win32-arm64-msvc");
|
|
179
|
+
const bindingPackageVersion = require("@visulima/tui-binding-win32-arm64-msvc/package.json").version;
|
|
180
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
181
|
+
throw new Error(
|
|
182
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
183
|
+
);
|
|
184
|
+
}
|
|
185
|
+
return binding;
|
|
186
|
+
} catch (e) {
|
|
187
|
+
loadErrors.push(e);
|
|
188
|
+
}
|
|
189
|
+
} else {
|
|
190
|
+
loadErrors.push(new Error(`Unsupported architecture on Windows: ${process.arch}`));
|
|
420
191
|
}
|
|
421
|
-
|
|
192
|
+
} else if (process.platform === "darwin") {
|
|
422
193
|
try {
|
|
423
|
-
|
|
194
|
+
return require("./tui-native.darwin-universal.node");
|
|
424
195
|
} catch (e) {
|
|
425
|
-
|
|
196
|
+
loadErrors.push(e);
|
|
426
197
|
}
|
|
427
198
|
try {
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
199
|
+
const binding = require("@visulima/tui-binding-darwin-universal");
|
|
200
|
+
const bindingPackageVersion = require("@visulima/tui-binding-darwin-universal/package.json").version;
|
|
201
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
202
|
+
throw new Error(
|
|
203
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
204
|
+
);
|
|
205
|
+
}
|
|
206
|
+
return binding;
|
|
434
207
|
} catch (e) {
|
|
435
|
-
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
208
|
+
loadErrors.push(e);
|
|
209
|
+
}
|
|
210
|
+
if (process.arch === "x64") {
|
|
211
|
+
try {
|
|
212
|
+
return require("./tui-native.darwin-x64.node");
|
|
213
|
+
} catch (e) {
|
|
214
|
+
loadErrors.push(e);
|
|
215
|
+
}
|
|
216
|
+
try {
|
|
217
|
+
const binding = require("@visulima/tui-binding-darwin-x64");
|
|
218
|
+
const bindingPackageVersion = require("@visulima/tui-binding-darwin-x64/package.json").version;
|
|
219
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
220
|
+
throw new Error(
|
|
221
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
222
|
+
);
|
|
223
|
+
}
|
|
224
|
+
return binding;
|
|
225
|
+
} catch (e) {
|
|
226
|
+
loadErrors.push(e);
|
|
227
|
+
}
|
|
228
|
+
} else if (process.arch === "arm64") {
|
|
229
|
+
try {
|
|
230
|
+
return require("./tui-native.darwin-arm64.node");
|
|
231
|
+
} catch (e) {
|
|
232
|
+
loadErrors.push(e);
|
|
233
|
+
}
|
|
234
|
+
try {
|
|
235
|
+
const binding = require("@visulima/tui-binding-darwin-arm64");
|
|
236
|
+
const bindingPackageVersion = require("@visulima/tui-binding-darwin-arm64/package.json").version;
|
|
237
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
238
|
+
throw new Error(
|
|
239
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
240
|
+
);
|
|
241
|
+
}
|
|
242
|
+
return binding;
|
|
243
|
+
} catch (e) {
|
|
244
|
+
loadErrors.push(e);
|
|
245
|
+
}
|
|
246
|
+
} else {
|
|
247
|
+
loadErrors.push(new Error(`Unsupported architecture on macOS: ${process.arch}`));
|
|
248
|
+
}
|
|
249
|
+
} else if (process.platform === "freebsd") {
|
|
250
|
+
if (process.arch === "x64") {
|
|
251
|
+
try {
|
|
252
|
+
return require("./tui-native.freebsd-x64.node");
|
|
253
|
+
} catch (e) {
|
|
254
|
+
loadErrors.push(e);
|
|
255
|
+
}
|
|
256
|
+
try {
|
|
257
|
+
const binding = require("@visulima/tui-binding-freebsd-x64");
|
|
258
|
+
const bindingPackageVersion = require("@visulima/tui-binding-freebsd-x64/package.json").version;
|
|
259
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
260
|
+
throw new Error(
|
|
261
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
262
|
+
);
|
|
263
|
+
}
|
|
264
|
+
return binding;
|
|
265
|
+
} catch (e) {
|
|
266
|
+
loadErrors.push(e);
|
|
267
|
+
}
|
|
268
|
+
} else if (process.arch === "arm64") {
|
|
269
|
+
try {
|
|
270
|
+
return require("./tui-native.freebsd-arm64.node");
|
|
271
|
+
} catch (e) {
|
|
272
|
+
loadErrors.push(e);
|
|
273
|
+
}
|
|
274
|
+
try {
|
|
275
|
+
const binding = require("@visulima/tui-binding-freebsd-arm64");
|
|
276
|
+
const bindingPackageVersion = require("@visulima/tui-binding-freebsd-arm64/package.json").version;
|
|
277
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
278
|
+
throw new Error(
|
|
279
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
280
|
+
);
|
|
281
|
+
}
|
|
282
|
+
return binding;
|
|
283
|
+
} catch (e) {
|
|
284
|
+
loadErrors.push(e);
|
|
285
|
+
}
|
|
286
|
+
} else {
|
|
287
|
+
loadErrors.push(new Error(`Unsupported architecture on FreeBSD: ${process.arch}`));
|
|
288
|
+
}
|
|
289
|
+
} else if (process.platform === "linux") {
|
|
290
|
+
if (process.arch === "x64") {
|
|
291
|
+
if (isMusl()) {
|
|
292
|
+
try {
|
|
293
|
+
return require("./tui-native.linux-x64-musl.node");
|
|
294
|
+
} catch (e) {
|
|
295
|
+
loadErrors.push(e);
|
|
296
|
+
}
|
|
297
|
+
try {
|
|
298
|
+
const binding = require("@visulima/tui-binding-linux-x64-musl");
|
|
299
|
+
const bindingPackageVersion = require("@visulima/tui-binding-linux-x64-musl/package.json").version;
|
|
300
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
301
|
+
throw new Error(
|
|
302
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
303
|
+
);
|
|
304
|
+
}
|
|
305
|
+
return binding;
|
|
306
|
+
} catch (e) {
|
|
307
|
+
loadErrors.push(e);
|
|
308
|
+
}
|
|
309
|
+
} else {
|
|
310
|
+
try {
|
|
311
|
+
return require("./tui-native.linux-x64-gnu.node");
|
|
312
|
+
} catch (e) {
|
|
313
|
+
loadErrors.push(e);
|
|
314
|
+
}
|
|
315
|
+
try {
|
|
316
|
+
const binding = require("@visulima/tui-binding-linux-x64-gnu");
|
|
317
|
+
const bindingPackageVersion = require("@visulima/tui-binding-linux-x64-gnu/package.json").version;
|
|
318
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
319
|
+
throw new Error(
|
|
320
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
321
|
+
);
|
|
322
|
+
}
|
|
323
|
+
return binding;
|
|
324
|
+
} catch (e) {
|
|
325
|
+
loadErrors.push(e);
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
} else if (process.arch === "arm64") {
|
|
329
|
+
if (isMusl()) {
|
|
330
|
+
try {
|
|
331
|
+
return require("./tui-native.linux-arm64-musl.node");
|
|
332
|
+
} catch (e) {
|
|
333
|
+
loadErrors.push(e);
|
|
334
|
+
}
|
|
335
|
+
try {
|
|
336
|
+
const binding = require("@visulima/tui-binding-linux-arm64-musl");
|
|
337
|
+
const bindingPackageVersion = require("@visulima/tui-binding-linux-arm64-musl/package.json").version;
|
|
338
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
339
|
+
throw new Error(
|
|
340
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
341
|
+
);
|
|
342
|
+
}
|
|
343
|
+
return binding;
|
|
344
|
+
} catch (e) {
|
|
345
|
+
loadErrors.push(e);
|
|
346
|
+
}
|
|
347
|
+
} else {
|
|
348
|
+
try {
|
|
349
|
+
return require("./tui-native.linux-arm64-gnu.node");
|
|
350
|
+
} catch (e) {
|
|
351
|
+
loadErrors.push(e);
|
|
352
|
+
}
|
|
353
|
+
try {
|
|
354
|
+
const binding = require("@visulima/tui-binding-linux-arm64-gnu");
|
|
355
|
+
const bindingPackageVersion = require("@visulima/tui-binding-linux-arm64-gnu/package.json").version;
|
|
356
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
357
|
+
throw new Error(
|
|
358
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
359
|
+
);
|
|
360
|
+
}
|
|
361
|
+
return binding;
|
|
362
|
+
} catch (e) {
|
|
363
|
+
loadErrors.push(e);
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
} else if (process.arch === "arm") {
|
|
367
|
+
if (isMusl()) {
|
|
368
|
+
try {
|
|
369
|
+
return require("./tui-native.linux-arm-musleabihf.node");
|
|
370
|
+
} catch (e) {
|
|
371
|
+
loadErrors.push(e);
|
|
372
|
+
}
|
|
373
|
+
try {
|
|
374
|
+
const binding = require("@visulima/tui-binding-linux-arm-musleabihf");
|
|
375
|
+
const bindingPackageVersion = require("@visulima/tui-binding-linux-arm-musleabihf/package.json").version;
|
|
376
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
377
|
+
throw new Error(
|
|
378
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
379
|
+
);
|
|
380
|
+
}
|
|
381
|
+
return binding;
|
|
382
|
+
} catch (e) {
|
|
383
|
+
loadErrors.push(e);
|
|
384
|
+
}
|
|
385
|
+
} else {
|
|
386
|
+
try {
|
|
387
|
+
return require("./tui-native.linux-arm-gnueabihf.node");
|
|
388
|
+
} catch (e) {
|
|
389
|
+
loadErrors.push(e);
|
|
390
|
+
}
|
|
391
|
+
try {
|
|
392
|
+
const binding = require("@visulima/tui-binding-linux-arm-gnueabihf");
|
|
393
|
+
const bindingPackageVersion = require("@visulima/tui-binding-linux-arm-gnueabihf/package.json").version;
|
|
394
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
395
|
+
throw new Error(
|
|
396
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
397
|
+
);
|
|
398
|
+
}
|
|
399
|
+
return binding;
|
|
400
|
+
} catch (e) {
|
|
401
|
+
loadErrors.push(e);
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
} else if (process.arch === "loong64") {
|
|
405
|
+
if (isMusl()) {
|
|
406
|
+
try {
|
|
407
|
+
return require("./tui-native.linux-loong64-musl.node");
|
|
408
|
+
} catch (e) {
|
|
409
|
+
loadErrors.push(e);
|
|
410
|
+
}
|
|
411
|
+
try {
|
|
412
|
+
const binding = require("@visulima/tui-binding-linux-loong64-musl");
|
|
413
|
+
const bindingPackageVersion = require("@visulima/tui-binding-linux-loong64-musl/package.json").version;
|
|
414
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
415
|
+
throw new Error(
|
|
416
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
417
|
+
);
|
|
418
|
+
}
|
|
419
|
+
return binding;
|
|
420
|
+
} catch (e) {
|
|
421
|
+
loadErrors.push(e);
|
|
422
|
+
}
|
|
423
|
+
} else {
|
|
424
|
+
try {
|
|
425
|
+
return require("./tui-native.linux-loong64-gnu.node");
|
|
426
|
+
} catch (e) {
|
|
427
|
+
loadErrors.push(e);
|
|
428
|
+
}
|
|
429
|
+
try {
|
|
430
|
+
const binding = require("@visulima/tui-binding-linux-loong64-gnu");
|
|
431
|
+
const bindingPackageVersion = require("@visulima/tui-binding-linux-loong64-gnu/package.json").version;
|
|
432
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
433
|
+
throw new Error(
|
|
434
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
435
|
+
);
|
|
436
|
+
}
|
|
437
|
+
return binding;
|
|
438
|
+
} catch (e) {
|
|
439
|
+
loadErrors.push(e);
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
} else if (process.arch === "riscv64") {
|
|
443
|
+
if (isMusl()) {
|
|
444
|
+
try {
|
|
445
|
+
return require("./tui-native.linux-riscv64-musl.node");
|
|
446
|
+
} catch (e) {
|
|
447
|
+
loadErrors.push(e);
|
|
448
|
+
}
|
|
449
|
+
try {
|
|
450
|
+
const binding = require("@visulima/tui-binding-linux-riscv64-musl");
|
|
451
|
+
const bindingPackageVersion = require("@visulima/tui-binding-linux-riscv64-musl/package.json").version;
|
|
452
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
453
|
+
throw new Error(
|
|
454
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
455
|
+
);
|
|
456
|
+
}
|
|
457
|
+
return binding;
|
|
458
|
+
} catch (e) {
|
|
459
|
+
loadErrors.push(e);
|
|
460
|
+
}
|
|
461
|
+
} else {
|
|
462
|
+
try {
|
|
463
|
+
return require("./tui-native.linux-riscv64-gnu.node");
|
|
464
|
+
} catch (e) {
|
|
465
|
+
loadErrors.push(e);
|
|
466
|
+
}
|
|
467
|
+
try {
|
|
468
|
+
const binding = require("@visulima/tui-binding-linux-riscv64-gnu");
|
|
469
|
+
const bindingPackageVersion = require("@visulima/tui-binding-linux-riscv64-gnu/package.json").version;
|
|
470
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
471
|
+
throw new Error(
|
|
472
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
473
|
+
);
|
|
474
|
+
}
|
|
475
|
+
return binding;
|
|
476
|
+
} catch (e) {
|
|
477
|
+
loadErrors.push(e);
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
} else if (process.arch === "ppc64") {
|
|
481
|
+
try {
|
|
482
|
+
return require("./tui-native.linux-ppc64-gnu.node");
|
|
483
|
+
} catch (e) {
|
|
484
|
+
loadErrors.push(e);
|
|
485
|
+
}
|
|
486
|
+
try {
|
|
487
|
+
const binding = require("@visulima/tui-binding-linux-ppc64-gnu");
|
|
488
|
+
const bindingPackageVersion = require("@visulima/tui-binding-linux-ppc64-gnu/package.json").version;
|
|
489
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
490
|
+
throw new Error(
|
|
491
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
492
|
+
);
|
|
493
|
+
}
|
|
494
|
+
return binding;
|
|
495
|
+
} catch (e) {
|
|
496
|
+
loadErrors.push(e);
|
|
497
|
+
}
|
|
498
|
+
} else if (process.arch === "s390x") {
|
|
499
|
+
try {
|
|
500
|
+
return require("./tui-native.linux-s390x-gnu.node");
|
|
501
|
+
} catch (e) {
|
|
502
|
+
loadErrors.push(e);
|
|
503
|
+
}
|
|
504
|
+
try {
|
|
505
|
+
const binding = require("@visulima/tui-binding-linux-s390x-gnu");
|
|
506
|
+
const bindingPackageVersion = require("@visulima/tui-binding-linux-s390x-gnu/package.json").version;
|
|
507
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
508
|
+
throw new Error(
|
|
509
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
510
|
+
);
|
|
511
|
+
}
|
|
512
|
+
return binding;
|
|
513
|
+
} catch (e) {
|
|
514
|
+
loadErrors.push(e);
|
|
515
|
+
}
|
|
516
|
+
} else {
|
|
517
|
+
loadErrors.push(new Error(`Unsupported architecture on Linux: ${process.arch}`));
|
|
518
|
+
}
|
|
519
|
+
} else if (process.platform === "openharmony") {
|
|
520
|
+
if (process.arch === "arm64") {
|
|
521
|
+
try {
|
|
522
|
+
return require("./tui-native.openharmony-arm64.node");
|
|
523
|
+
} catch (e) {
|
|
524
|
+
loadErrors.push(e);
|
|
525
|
+
}
|
|
526
|
+
try {
|
|
527
|
+
const binding = require("@visulima/tui-binding-openharmony-arm64");
|
|
528
|
+
const bindingPackageVersion = require("@visulima/tui-binding-openharmony-arm64/package.json").version;
|
|
529
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
530
|
+
throw new Error(
|
|
531
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
532
|
+
);
|
|
533
|
+
}
|
|
534
|
+
return binding;
|
|
535
|
+
} catch (e) {
|
|
536
|
+
loadErrors.push(e);
|
|
537
|
+
}
|
|
538
|
+
} else if (process.arch === "x64") {
|
|
539
|
+
try {
|
|
540
|
+
return require("./tui-native.openharmony-x64.node");
|
|
541
|
+
} catch (e) {
|
|
542
|
+
loadErrors.push(e);
|
|
543
|
+
}
|
|
544
|
+
try {
|
|
545
|
+
const binding = require("@visulima/tui-binding-openharmony-x64");
|
|
546
|
+
const bindingPackageVersion = require("@visulima/tui-binding-openharmony-x64/package.json").version;
|
|
547
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
548
|
+
throw new Error(
|
|
549
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
550
|
+
);
|
|
551
|
+
}
|
|
552
|
+
return binding;
|
|
553
|
+
} catch (e) {
|
|
554
|
+
loadErrors.push(e);
|
|
555
|
+
}
|
|
556
|
+
} else if (process.arch === "arm") {
|
|
557
|
+
try {
|
|
558
|
+
return require("./tui-native.openharmony-arm.node");
|
|
559
|
+
} catch (e) {
|
|
560
|
+
loadErrors.push(e);
|
|
561
|
+
}
|
|
562
|
+
try {
|
|
563
|
+
const binding = require("@visulima/tui-binding-openharmony-arm");
|
|
564
|
+
const bindingPackageVersion = require("@visulima/tui-binding-openharmony-arm/package.json").version;
|
|
565
|
+
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
566
|
+
throw new Error(
|
|
567
|
+
`Native binding package version mismatch, expected 1.0.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
568
|
+
);
|
|
569
|
+
}
|
|
570
|
+
return binding;
|
|
571
|
+
} catch (e) {
|
|
572
|
+
loadErrors.push(e);
|
|
573
|
+
}
|
|
574
|
+
} else {
|
|
575
|
+
loadErrors.push(new Error(`Unsupported architecture on OpenHarmony: ${process.arch}`));
|
|
517
576
|
}
|
|
518
|
-
return binding
|
|
519
|
-
} catch (e) {
|
|
520
|
-
loadErrors.push(e)
|
|
521
|
-
}
|
|
522
577
|
} else {
|
|
523
|
-
|
|
578
|
+
loadErrors.push(new Error(`Unsupported OS: ${process.platform}, architecture: ${process.arch}`));
|
|
524
579
|
}
|
|
525
|
-
} else {
|
|
526
|
-
loadErrors.push(new Error(`Unsupported OS: ${process.platform}, architecture: ${process.arch}`))
|
|
527
|
-
}
|
|
528
580
|
}
|
|
529
581
|
|
|
530
|
-
nativeBinding = requireNative()
|
|
582
|
+
nativeBinding = requireNative();
|
|
531
583
|
|
|
532
584
|
// NAPI_RS_FORCE_WASI is a tri-state flag:
|
|
533
585
|
// unset / any other value → native binding preferred, WASI is only a fallback
|
|
@@ -536,60 +588,59 @@ nativeBinding = requireNative()
|
|
|
536
588
|
// Treating any non-empty string as truthy (the historical behavior) meant
|
|
537
589
|
// NAPI_RS_FORCE_WASI=false, NAPI_RS_FORCE_WASI=0, etc. inadvertently triggered
|
|
538
590
|
// the WASI path, causing ENOENT for packages shipped without a .wasi.cjs file.
|
|
539
|
-
const forceWasi =
|
|
540
|
-
process.env.NAPI_RS_FORCE_WASI === 'true' || process.env.NAPI_RS_FORCE_WASI === 'error'
|
|
591
|
+
const forceWasi = process.env.NAPI_RS_FORCE_WASI === "true" || process.env.NAPI_RS_FORCE_WASI === "error";
|
|
541
592
|
|
|
542
593
|
if (!nativeBinding || forceWasi) {
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
try {
|
|
546
|
-
wasiBinding = require('./tui-native.wasi.cjs')
|
|
547
|
-
nativeBinding = wasiBinding
|
|
548
|
-
} catch (err) {
|
|
549
|
-
if (forceWasi) {
|
|
550
|
-
wasiBindingError = err
|
|
551
|
-
}
|
|
552
|
-
}
|
|
553
|
-
if (!nativeBinding || forceWasi) {
|
|
594
|
+
let wasiBinding = null;
|
|
595
|
+
let wasiBindingError = null;
|
|
554
596
|
try {
|
|
555
|
-
|
|
556
|
-
|
|
597
|
+
wasiBinding = require("./tui-native.wasi.cjs");
|
|
598
|
+
nativeBinding = wasiBinding;
|
|
557
599
|
} catch (err) {
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
600
|
+
if (forceWasi) {
|
|
601
|
+
wasiBindingError = err;
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
if (!nativeBinding || forceWasi) {
|
|
605
|
+
try {
|
|
606
|
+
wasiBinding = require("@visulima/tui-binding-wasm32-wasi");
|
|
607
|
+
nativeBinding = wasiBinding;
|
|
608
|
+
} catch (err) {
|
|
609
|
+
if (forceWasi) {
|
|
610
|
+
if (!wasiBindingError) {
|
|
611
|
+
wasiBindingError = err;
|
|
612
|
+
} else {
|
|
613
|
+
wasiBindingError.cause = err;
|
|
614
|
+
}
|
|
615
|
+
loadErrors.push(err);
|
|
616
|
+
}
|
|
563
617
|
}
|
|
564
|
-
loadErrors.push(err)
|
|
565
|
-
}
|
|
566
618
|
}
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
}
|
|
619
|
+
if (process.env.NAPI_RS_FORCE_WASI === "error" && !wasiBinding) {
|
|
620
|
+
const error = new Error("WASI binding not found and NAPI_RS_FORCE_WASI is set to error");
|
|
621
|
+
error.cause = wasiBindingError;
|
|
622
|
+
throw error;
|
|
623
|
+
}
|
|
573
624
|
}
|
|
574
625
|
|
|
575
626
|
if (!nativeBinding) {
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
627
|
+
if (loadErrors.length > 0) {
|
|
628
|
+
throw new Error(
|
|
629
|
+
`Cannot find native binding. ` +
|
|
630
|
+
`npm has a bug related to optional dependencies (https://github.com/npm/cli/issues/4828). ` +
|
|
631
|
+
"Please try `npm i` again after removing both package-lock.json and node_modules directory.",
|
|
632
|
+
{
|
|
633
|
+
cause: loadErrors.reduce((err, cur) => {
|
|
634
|
+
cur.cause = err;
|
|
635
|
+
return cur;
|
|
636
|
+
}),
|
|
637
|
+
},
|
|
638
|
+
);
|
|
639
|
+
}
|
|
640
|
+
throw new Error(`Failed to load native binding`);
|
|
590
641
|
}
|
|
591
642
|
|
|
592
|
-
const { Renderer, TerminalGuard, terminalSize } = nativeBinding
|
|
593
|
-
export { Renderer }
|
|
594
|
-
export { TerminalGuard }
|
|
595
|
-
export { terminalSize }
|
|
643
|
+
const { Renderer, TerminalGuard, terminalSize } = nativeBinding;
|
|
644
|
+
export { Renderer };
|
|
645
|
+
export { TerminalGuard };
|
|
646
|
+
export { terminalSize };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/tui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "React-based TUI library powered by a native Rust diff engine, drop-in Ink-compatible API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -14,6 +14,11 @@
|
|
|
14
14
|
],
|
|
15
15
|
"homepage": "https://visulima.com/packages/tui",
|
|
16
16
|
"bugs": "https://github.com/visulima/visulima/issues",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"author": {
|
|
19
|
+
"name": "Daniel Bannert",
|
|
20
|
+
"email": "d.bannert@anolilab.de"
|
|
21
|
+
},
|
|
17
22
|
"repository": {
|
|
18
23
|
"type": "git",
|
|
19
24
|
"url": "git+https://github.com/visulima/visulima.git",
|
|
@@ -29,15 +34,17 @@
|
|
|
29
34
|
"url": "https://anolilab.com/support"
|
|
30
35
|
}
|
|
31
36
|
],
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
+
"files": [
|
|
38
|
+
"dist/**",
|
|
39
|
+
"index.js",
|
|
40
|
+
"README.md",
|
|
41
|
+
"CHANGELOG.md",
|
|
42
|
+
"LICENSE.md"
|
|
43
|
+
],
|
|
44
|
+
"type": "module",
|
|
37
45
|
"sideEffects": [
|
|
38
46
|
"./index.js"
|
|
39
47
|
],
|
|
40
|
-
"type": "module",
|
|
41
48
|
"exports": {
|
|
42
49
|
".": {
|
|
43
50
|
"types": "./dist/ink/index.d.ts",
|
|
@@ -585,13 +592,10 @@
|
|
|
585
592
|
},
|
|
586
593
|
"./package.json": "./package.json"
|
|
587
594
|
},
|
|
588
|
-
"
|
|
589
|
-
"
|
|
590
|
-
"
|
|
591
|
-
|
|
592
|
-
"CHANGELOG.md",
|
|
593
|
-
"LICENSE.md"
|
|
594
|
-
],
|
|
595
|
+
"publishConfig": {
|
|
596
|
+
"access": "public",
|
|
597
|
+
"provenance": true
|
|
598
|
+
},
|
|
595
599
|
"dependencies": {
|
|
596
600
|
"@visulima/ansi": "4.0.0",
|
|
597
601
|
"@visulima/colorize": "2.0.0",
|
|
@@ -609,8 +613,8 @@
|
|
|
609
613
|
"yoga-layout": "~3.2.1"
|
|
610
614
|
},
|
|
611
615
|
"peerDependencies": {
|
|
612
|
-
"@shikijs/langs": "^4.
|
|
613
|
-
"@shikijs/themes": "^4.
|
|
616
|
+
"@shikijs/langs": "^4.3.0",
|
|
617
|
+
"@shikijs/themes": "^4.3.0",
|
|
614
618
|
"@visulima/tabular": "4.0.0",
|
|
615
619
|
"cfonts": "^3.3.1",
|
|
616
620
|
"diff": "^9.0.0",
|
|
@@ -618,7 +622,7 @@
|
|
|
618
622
|
"react": "^19.2.6",
|
|
619
623
|
"react-devtools-core": "^7.0.1",
|
|
620
624
|
"react-reconciler": "^0.33.0",
|
|
621
|
-
"shiki": "^4.
|
|
625
|
+
"shiki": "^4.3.0",
|
|
622
626
|
"ws": "^8.21.0"
|
|
623
627
|
},
|
|
624
628
|
"peerDependenciesMeta": {
|
|
@@ -651,20 +655,16 @@
|
|
|
651
655
|
}
|
|
652
656
|
},
|
|
653
657
|
"optionalDependencies": {
|
|
654
|
-
"@visulima/tui-binding-darwin-arm64": "1.0.
|
|
655
|
-
"@visulima/tui-binding-
|
|
656
|
-
"@visulima/tui-binding-linux-arm64-
|
|
657
|
-
"@visulima/tui-binding-linux-x64-gnu": "1.0.
|
|
658
|
-
"@visulima/tui-binding-
|
|
659
|
-
"@visulima/tui-binding-linux-x64-musl": "1.0.
|
|
660
|
-
"@visulima/tui-binding-win32-arm64-msvc": "1.0.
|
|
661
|
-
"@visulima/tui-binding-win32-x64-msvc": "1.0.
|
|
658
|
+
"@visulima/tui-binding-darwin-arm64": "1.0.2",
|
|
659
|
+
"@visulima/tui-binding-linux-arm64-musl": "1.0.2",
|
|
660
|
+
"@visulima/tui-binding-linux-arm64-gnu": "1.0.2",
|
|
661
|
+
"@visulima/tui-binding-linux-x64-gnu": "1.0.2",
|
|
662
|
+
"@visulima/tui-binding-darwin-x64": "1.0.2",
|
|
663
|
+
"@visulima/tui-binding-linux-x64-musl": "1.0.2",
|
|
664
|
+
"@visulima/tui-binding-win32-arm64-msvc": "1.0.2",
|
|
665
|
+
"@visulima/tui-binding-win32-x64-msvc": "1.0.2"
|
|
662
666
|
},
|
|
663
667
|
"engines": {
|
|
664
668
|
"node": "^22.14.0 || >=24.10.0"
|
|
665
|
-
},
|
|
666
|
-
"publishConfig": {
|
|
667
|
-
"access": "public",
|
|
668
|
-
"provenance": true
|
|
669
669
|
}
|
|
670
670
|
}
|