@vibedeckx/darwin-arm64 0.1.23 → 0.1.25

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.
Files changed (40) hide show
  1. package/dist/bin.js +1492 -616
  2. package/dist/ui/404/index.html +1 -1
  3. package/dist/ui/404.html +1 -1
  4. package/dist/ui/__next.__PAGE__.txt +2 -2
  5. package/dist/ui/__next._full.txt +6 -6
  6. package/dist/ui/__next._head.txt +1 -1
  7. package/dist/ui/__next._index.txt +5 -5
  8. package/dist/ui/__next._tree.txt +2 -2
  9. package/dist/ui/_next/static/chunks/03d6fb3847124588.css +1 -0
  10. package/dist/ui/_next/static/chunks/{dae86e12c7741e6c.js → 3395a5b27133097f.js} +5 -5
  11. package/dist/ui/_next/static/chunks/e6d6cc1ae3068950.js +29 -0
  12. package/dist/ui/_not-found/__next._full.txt +5 -5
  13. package/dist/ui/_not-found/__next._head.txt +1 -1
  14. package/dist/ui/_not-found/__next._index.txt +5 -5
  15. package/dist/ui/_not-found/__next._not-found.__PAGE__.txt +1 -1
  16. package/dist/ui/_not-found/__next._not-found.txt +1 -1
  17. package/dist/ui/_not-found/__next._tree.txt +2 -2
  18. package/dist/ui/_not-found/index.html +1 -1
  19. package/dist/ui/_not-found/index.txt +5 -5
  20. package/dist/ui/index.html +1 -1
  21. package/dist/ui/index.txt +6 -6
  22. package/node_modules/better-sqlite3/package.json +3 -0
  23. package/node_modules/bindings/LICENSE.md +22 -0
  24. package/node_modules/bindings/README.md +98 -0
  25. package/node_modules/bindings/bindings.js +221 -0
  26. package/node_modules/bindings/package.json +28 -0
  27. package/node_modules/file-uri-to-path/History.md +21 -0
  28. package/node_modules/file-uri-to-path/LICENSE +20 -0
  29. package/node_modules/file-uri-to-path/README.md +74 -0
  30. package/node_modules/file-uri-to-path/index.d.ts +2 -0
  31. package/node_modules/file-uri-to-path/index.js +66 -0
  32. package/node_modules/file-uri-to-path/package.json +32 -0
  33. package/node_modules/file-uri-to-path/test/test.js +24 -0
  34. package/node_modules/file-uri-to-path/test/tests.json +13 -0
  35. package/package.json +1 -1
  36. package/dist/ui/_next/static/chunks/9393cbbff01bb58d.js +0 -29
  37. package/dist/ui/_next/static/chunks/e23d46e94edec1d3.css +0 -1
  38. /package/dist/ui/_next/static/{_oIkVA-8sboc_20lcPBrb → 3FlKmnMOaSdQhYCbw6R1U}/_buildManifest.js +0 -0
  39. /package/dist/ui/_next/static/{_oIkVA-8sboc_20lcPBrb → 3FlKmnMOaSdQhYCbw6R1U}/_clientMiddlewareManifest.json +0 -0
  40. /package/dist/ui/_next/static/{_oIkVA-8sboc_20lcPBrb → 3FlKmnMOaSdQhYCbw6R1U}/_ssgManifest.js +0 -0
@@ -0,0 +1,221 @@
1
+ /**
2
+ * Module dependencies.
3
+ */
4
+
5
+ var fs = require('fs'),
6
+ path = require('path'),
7
+ fileURLToPath = require('file-uri-to-path'),
8
+ join = path.join,
9
+ dirname = path.dirname,
10
+ exists =
11
+ (fs.accessSync &&
12
+ function(path) {
13
+ try {
14
+ fs.accessSync(path);
15
+ } catch (e) {
16
+ return false;
17
+ }
18
+ return true;
19
+ }) ||
20
+ fs.existsSync ||
21
+ path.existsSync,
22
+ defaults = {
23
+ arrow: process.env.NODE_BINDINGS_ARROW || ' → ',
24
+ compiled: process.env.NODE_BINDINGS_COMPILED_DIR || 'compiled',
25
+ platform: process.platform,
26
+ arch: process.arch,
27
+ nodePreGyp:
28
+ 'node-v' +
29
+ process.versions.modules +
30
+ '-' +
31
+ process.platform +
32
+ '-' +
33
+ process.arch,
34
+ version: process.versions.node,
35
+ bindings: 'bindings.node',
36
+ try: [
37
+ // node-gyp's linked version in the "build" dir
38
+ ['module_root', 'build', 'bindings'],
39
+ // node-waf and gyp_addon (a.k.a node-gyp)
40
+ ['module_root', 'build', 'Debug', 'bindings'],
41
+ ['module_root', 'build', 'Release', 'bindings'],
42
+ // Debug files, for development (legacy behavior, remove for node v0.9)
43
+ ['module_root', 'out', 'Debug', 'bindings'],
44
+ ['module_root', 'Debug', 'bindings'],
45
+ // Release files, but manually compiled (legacy behavior, remove for node v0.9)
46
+ ['module_root', 'out', 'Release', 'bindings'],
47
+ ['module_root', 'Release', 'bindings'],
48
+ // Legacy from node-waf, node <= 0.4.x
49
+ ['module_root', 'build', 'default', 'bindings'],
50
+ // Production "Release" buildtype binary (meh...)
51
+ ['module_root', 'compiled', 'version', 'platform', 'arch', 'bindings'],
52
+ // node-qbs builds
53
+ ['module_root', 'addon-build', 'release', 'install-root', 'bindings'],
54
+ ['module_root', 'addon-build', 'debug', 'install-root', 'bindings'],
55
+ ['module_root', 'addon-build', 'default', 'install-root', 'bindings'],
56
+ // node-pre-gyp path ./lib/binding/{node_abi}-{platform}-{arch}
57
+ ['module_root', 'lib', 'binding', 'nodePreGyp', 'bindings']
58
+ ]
59
+ };
60
+
61
+ /**
62
+ * The main `bindings()` function loads the compiled bindings for a given module.
63
+ * It uses V8's Error API to determine the parent filename that this function is
64
+ * being invoked from, which is then used to find the root directory.
65
+ */
66
+
67
+ function bindings(opts) {
68
+ // Argument surgery
69
+ if (typeof opts == 'string') {
70
+ opts = { bindings: opts };
71
+ } else if (!opts) {
72
+ opts = {};
73
+ }
74
+
75
+ // maps `defaults` onto `opts` object
76
+ Object.keys(defaults).map(function(i) {
77
+ if (!(i in opts)) opts[i] = defaults[i];
78
+ });
79
+
80
+ // Get the module root
81
+ if (!opts.module_root) {
82
+ opts.module_root = exports.getRoot(exports.getFileName());
83
+ }
84
+
85
+ // Ensure the given bindings name ends with .node
86
+ if (path.extname(opts.bindings) != '.node') {
87
+ opts.bindings += '.node';
88
+ }
89
+
90
+ // https://github.com/webpack/webpack/issues/4175#issuecomment-342931035
91
+ var requireFunc =
92
+ typeof __webpack_require__ === 'function'
93
+ ? __non_webpack_require__
94
+ : require;
95
+
96
+ var tries = [],
97
+ i = 0,
98
+ l = opts.try.length,
99
+ n,
100
+ b,
101
+ err;
102
+
103
+ for (; i < l; i++) {
104
+ n = join.apply(
105
+ null,
106
+ opts.try[i].map(function(p) {
107
+ return opts[p] || p;
108
+ })
109
+ );
110
+ tries.push(n);
111
+ try {
112
+ b = opts.path ? requireFunc.resolve(n) : requireFunc(n);
113
+ if (!opts.path) {
114
+ b.path = n;
115
+ }
116
+ return b;
117
+ } catch (e) {
118
+ if (e.code !== 'MODULE_NOT_FOUND' &&
119
+ e.code !== 'QUALIFIED_PATH_RESOLUTION_FAILED' &&
120
+ !/not find/i.test(e.message)) {
121
+ throw e;
122
+ }
123
+ }
124
+ }
125
+
126
+ err = new Error(
127
+ 'Could not locate the bindings file. Tried:\n' +
128
+ tries
129
+ .map(function(a) {
130
+ return opts.arrow + a;
131
+ })
132
+ .join('\n')
133
+ );
134
+ err.tries = tries;
135
+ throw err;
136
+ }
137
+ module.exports = exports = bindings;
138
+
139
+ /**
140
+ * Gets the filename of the JavaScript file that invokes this function.
141
+ * Used to help find the root directory of a module.
142
+ * Optionally accepts an filename argument to skip when searching for the invoking filename
143
+ */
144
+
145
+ exports.getFileName = function getFileName(calling_file) {
146
+ var origPST = Error.prepareStackTrace,
147
+ origSTL = Error.stackTraceLimit,
148
+ dummy = {},
149
+ fileName;
150
+
151
+ Error.stackTraceLimit = 10;
152
+
153
+ Error.prepareStackTrace = function(e, st) {
154
+ for (var i = 0, l = st.length; i < l; i++) {
155
+ fileName = st[i].getFileName();
156
+ if (fileName !== __filename) {
157
+ if (calling_file) {
158
+ if (fileName !== calling_file) {
159
+ return;
160
+ }
161
+ } else {
162
+ return;
163
+ }
164
+ }
165
+ }
166
+ };
167
+
168
+ // run the 'prepareStackTrace' function above
169
+ Error.captureStackTrace(dummy);
170
+ dummy.stack;
171
+
172
+ // cleanup
173
+ Error.prepareStackTrace = origPST;
174
+ Error.stackTraceLimit = origSTL;
175
+
176
+ // handle filename that starts with "file://"
177
+ var fileSchema = 'file://';
178
+ if (fileName.indexOf(fileSchema) === 0) {
179
+ fileName = fileURLToPath(fileName);
180
+ }
181
+
182
+ return fileName;
183
+ };
184
+
185
+ /**
186
+ * Gets the root directory of a module, given an arbitrary filename
187
+ * somewhere in the module tree. The "root directory" is the directory
188
+ * containing the `package.json` file.
189
+ *
190
+ * In: /home/nate/node-native-module/lib/index.js
191
+ * Out: /home/nate/node-native-module
192
+ */
193
+
194
+ exports.getRoot = function getRoot(file) {
195
+ var dir = dirname(file),
196
+ prev;
197
+ while (true) {
198
+ if (dir === '.') {
199
+ // Avoids an infinite loop in rare cases, like the REPL
200
+ dir = process.cwd();
201
+ }
202
+ if (
203
+ exists(join(dir, 'package.json')) ||
204
+ exists(join(dir, 'node_modules'))
205
+ ) {
206
+ // Found the 'package.json' file or 'node_modules' dir; we're done
207
+ return dir;
208
+ }
209
+ if (prev === dir) {
210
+ // Got to the top
211
+ throw new Error(
212
+ 'Could not find module root given file: "' +
213
+ file +
214
+ '". Do you have a `package.json` file? '
215
+ );
216
+ }
217
+ // Try the parent dir next
218
+ prev = dir;
219
+ dir = join(dir, '..');
220
+ }
221
+ };
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "bindings",
3
+ "description": "Helper module for loading your native module's .node file",
4
+ "keywords": [
5
+ "native",
6
+ "addon",
7
+ "bindings",
8
+ "gyp",
9
+ "waf",
10
+ "c",
11
+ "c++"
12
+ ],
13
+ "version": "1.5.0",
14
+ "author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git://github.com/TooTallNate/node-bindings.git"
18
+ },
19
+ "main": "./bindings.js",
20
+ "bugs": {
21
+ "url": "https://github.com/TooTallNate/node-bindings/issues"
22
+ },
23
+ "homepage": "https://github.com/TooTallNate/node-bindings",
24
+ "license": "MIT",
25
+ "dependencies": {
26
+ "file-uri-to-path": "1.0.0"
27
+ }
28
+ }
@@ -0,0 +1,21 @@
1
+
2
+ 1.0.0 / 2017-07-06
3
+ ==================
4
+
5
+ * update "mocha" to v3
6
+ * fixed unicode URI decoding (#6)
7
+ * add typings for Typescript
8
+ * README: use SVG Travis-CI badge
9
+ * add LICENSE file (MIT)
10
+ * add .travis.yml file (testing Node.js 0.8 through 8 currently)
11
+ * add README.md file
12
+
13
+ 0.0.2 / 2014-01-27
14
+ ==================
15
+
16
+ * index: invert the path separators on Windows
17
+
18
+ 0.0.1 / 2014-01-27
19
+ ==================
20
+
21
+ * initial commit
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ 'Software'), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,74 @@
1
+ file-uri-to-path
2
+ ================
3
+ ### Convert a `file:` URI to a file path
4
+ [![Build Status](https://travis-ci.org/TooTallNate/file-uri-to-path.svg?branch=master)](https://travis-ci.org/TooTallNate/file-uri-to-path)
5
+
6
+ Accepts a `file:` URI and returns a regular file path suitable for use with the
7
+ `fs` module functions.
8
+
9
+
10
+ Installation
11
+ ------------
12
+
13
+ Install with `npm`:
14
+
15
+ ``` bash
16
+ $ npm install file-uri-to-path
17
+ ```
18
+
19
+
20
+ Example
21
+ -------
22
+
23
+ ``` js
24
+ var uri2path = require('file-uri-to-path');
25
+
26
+ uri2path('file://localhost/c|/WINDOWS/clock.avi');
27
+ // "c:\\WINDOWS\\clock.avi"
28
+
29
+ uri2path('file:///c|/WINDOWS/clock.avi');
30
+ // "c:\\WINDOWS\\clock.avi"
31
+
32
+ uri2path('file://localhost/c:/WINDOWS/clock.avi');
33
+ // "c:\\WINDOWS\\clock.avi"
34
+
35
+ uri2path('file://hostname/path/to/the%20file.txt');
36
+ // "\\\\hostname\\path\\to\\the file.txt"
37
+
38
+ uri2path('file:///c:/path/to/the%20file.txt');
39
+ // "c:\\path\\to\\the file.txt"
40
+ ```
41
+
42
+
43
+ API
44
+ ---
45
+
46
+ ### fileUriToPath(String uri) → String
47
+
48
+
49
+
50
+ License
51
+ -------
52
+
53
+ (The MIT License)
54
+
55
+ Copyright (c) 2014 Nathan Rajlich &lt;nathan@tootallnate.net&gt;
56
+
57
+ Permission is hereby granted, free of charge, to any person obtaining
58
+ a copy of this software and associated documentation files (the
59
+ 'Software'), to deal in the Software without restriction, including
60
+ without limitation the rights to use, copy, modify, merge, publish,
61
+ distribute, sublicense, and/or sell copies of the Software, and to
62
+ permit persons to whom the Software is furnished to do so, subject to
63
+ the following conditions:
64
+
65
+ The above copyright notice and this permission notice shall be
66
+ included in all copies or substantial portions of the Software.
67
+
68
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
69
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
70
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
71
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
72
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
73
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
74
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,2 @@
1
+ declare function fileUriToPath(uri: string): string;
2
+ export = fileUriToPath;
@@ -0,0 +1,66 @@
1
+
2
+ /**
3
+ * Module dependencies.
4
+ */
5
+
6
+ var sep = require('path').sep || '/';
7
+
8
+ /**
9
+ * Module exports.
10
+ */
11
+
12
+ module.exports = fileUriToPath;
13
+
14
+ /**
15
+ * File URI to Path function.
16
+ *
17
+ * @param {String} uri
18
+ * @return {String} path
19
+ * @api public
20
+ */
21
+
22
+ function fileUriToPath (uri) {
23
+ if ('string' != typeof uri ||
24
+ uri.length <= 7 ||
25
+ 'file://' != uri.substring(0, 7)) {
26
+ throw new TypeError('must pass in a file:// URI to convert to a file path');
27
+ }
28
+
29
+ var rest = decodeURI(uri.substring(7));
30
+ var firstSlash = rest.indexOf('/');
31
+ var host = rest.substring(0, firstSlash);
32
+ var path = rest.substring(firstSlash + 1);
33
+
34
+ // 2. Scheme Definition
35
+ // As a special case, <host> can be the string "localhost" or the empty
36
+ // string; this is interpreted as "the machine from which the URL is
37
+ // being interpreted".
38
+ if ('localhost' == host) host = '';
39
+
40
+ if (host) {
41
+ host = sep + sep + host;
42
+ }
43
+
44
+ // 3.2 Drives, drive letters, mount points, file system root
45
+ // Drive letters are mapped into the top of a file URI in various ways,
46
+ // depending on the implementation; some applications substitute
47
+ // vertical bar ("|") for the colon after the drive letter, yielding
48
+ // "file:///c|/tmp/test.txt". In some cases, the colon is left
49
+ // unchanged, as in "file:///c:/tmp/test.txt". In other cases, the
50
+ // colon is simply omitted, as in "file:///c/tmp/test.txt".
51
+ path = path.replace(/^(.+)\|/, '$1:');
52
+
53
+ // for Windows, we need to invert the path separators from what a URI uses
54
+ if (sep == '\\') {
55
+ path = path.replace(/\//g, '\\');
56
+ }
57
+
58
+ if (/^.+\:/.test(path)) {
59
+ // has Windows drive at beginning of path
60
+ } else {
61
+ // unix path…
62
+ path = sep + path;
63
+ }
64
+
65
+ return host + path;
66
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "file-uri-to-path",
3
+ "version": "1.0.0",
4
+ "description": "Convert a file: URI to a file path",
5
+ "main": "index.js",
6
+ "types": "index.d.ts",
7
+ "directories": {
8
+ "test": "test"
9
+ },
10
+ "scripts": {
11
+ "test": "mocha --reporter spec"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git://github.com/TooTallNate/file-uri-to-path.git"
16
+ },
17
+ "keywords": [
18
+ "file",
19
+ "uri",
20
+ "convert",
21
+ "path"
22
+ ],
23
+ "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
24
+ "license": "MIT",
25
+ "bugs": {
26
+ "url": "https://github.com/TooTallNate/file-uri-to-path/issues"
27
+ },
28
+ "homepage": "https://github.com/TooTallNate/file-uri-to-path",
29
+ "devDependencies": {
30
+ "mocha": "3"
31
+ }
32
+ }
@@ -0,0 +1,24 @@
1
+
2
+ var sep = require('path').sep || '/';
3
+ var assert = require('assert');
4
+ var uri2path = require('../');
5
+ var tests = require('./tests.json');
6
+
7
+ describe('file-uri-to-path', function () {
8
+
9
+ Object.keys(tests).forEach(function (uri) {
10
+
11
+ // the test cases were generated from Windows' PathCreateFromUrlA() function.
12
+ // On Unix, we have to replace the path separator with the Unix one instead of
13
+ // the Windows one.
14
+ var expected = tests[uri].replace(/\\/g, sep);
15
+
16
+ it('should convert ' + JSON.stringify(uri) + ' to ' + JSON.stringify(expected),
17
+ function () {
18
+ var actual = uri2path(uri);
19
+ assert.equal(actual, expected);
20
+ });
21
+
22
+ });
23
+
24
+ });
@@ -0,0 +1,13 @@
1
+ {
2
+ "file://host/path": "\\\\host\\path",
3
+ "file://localhost/etc/fstab": "\\etc\\fstab",
4
+ "file:///etc/fstab": "\\etc\\fstab",
5
+ "file:///c:/WINDOWS/clock.avi": "c:\\WINDOWS\\clock.avi",
6
+ "file://localhost/c|/WINDOWS/clock.avi": "c:\\WINDOWS\\clock.avi",
7
+ "file:///c|/WINDOWS/clock.avi": "c:\\WINDOWS\\clock.avi",
8
+ "file://localhost/c:/WINDOWS/clock.avi": "c:\\WINDOWS\\clock.avi",
9
+ "file://hostname/path/to/the%20file.txt": "\\\\hostname\\path\\to\\the file.txt",
10
+ "file:///c:/path/to/the%20file.txt": "c:\\path\\to\\the file.txt",
11
+ "file:///C:/Documents%20and%20Settings/davris/FileSchemeURIs.doc": "C:\\Documents and Settings\\davris\\FileSchemeURIs.doc",
12
+ "file:///C:/caf%C3%A9/%C3%A5r/d%C3%BCnn/%E7%89%9B%E9%93%83/Ph%E1%BB%9F/%F0%9F%98%B5.exe": "C:\\café\\år\\dünn\\牛铃\\Phở\\😵.exe"
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibedeckx/darwin-arm64",
3
- "version": "0.1.23",
3
+ "version": "0.1.25",
4
4
  "description": "Vibedeckx platform binaries for macOS ARM64",
5
5
  "os": [
6
6
  "darwin"