@vuetify/cli 1.1.5 → 1.1.6
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/{chunk-D1copJQv.mjs → chunk-4zg6TaOy.mjs} +7 -13
- package/dist/index.mjs +5663 -5763
- package/dist/{jiti-C_tmzcsl.mjs → jiti-CeHW56Xt.mjs} +5 -10
- package/dist/nypm-B0R09qA9.mjs +3 -0
- package/dist/{nypm-Bg2ry-tJ.mjs → nypm-BiogvDa_.mjs} +8 -19
- package/dist/{rolldown-runtime-BM60vSjP.mjs → rolldown-runtime-1wn-XonI.mjs} +1 -2
- package/dist/{src-Cc5BV24k.mjs → src-CiZqY_Es.mjs} +4 -14
- package/dist/{tar-CdTjip02.mjs → tar-D0wLsG-Y.mjs} +9 -14
- package/package.json +122 -7
- package/dist/nypm-Dl0ysHx5.mjs +0 -4
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { i as __toESM, n as __esmMin, r as __require, t as __commonJSMin } from "./chunk-
|
|
2
|
+
import { i as __toESM, n as __esmMin, r as __require, t as __commonJSMin } from "./chunk-4zg6TaOy.mjs";
|
|
3
3
|
import { createRequire } from "node:module";
|
|
4
|
-
|
|
5
4
|
//#region ../../node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/dist/jiti.cjs
|
|
6
5
|
var require_jiti = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
7
6
|
(() => {
|
|
@@ -4449,7 +4448,6 @@ var require_jiti = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4449
4448
|
})(), module.exports = i.default;
|
|
4450
4449
|
})();
|
|
4451
4450
|
}));
|
|
4452
|
-
|
|
4453
4451
|
//#endregion
|
|
4454
4452
|
//#region ../../node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/lib/jiti.mjs
|
|
4455
4453
|
function onError(err) {
|
|
@@ -4471,12 +4469,9 @@ function createJiti(id, opts = {}) {
|
|
|
4471
4469
|
});
|
|
4472
4470
|
}
|
|
4473
4471
|
var import_jiti, nativeImport, _transform;
|
|
4474
|
-
|
|
4472
|
+
//#endregion
|
|
4473
|
+
__esmMin((() => {
|
|
4475
4474
|
import_jiti = /* @__PURE__ */ __toESM(require_jiti(), 1);
|
|
4476
4475
|
nativeImport = (id) => import(id);
|
|
4477
|
-
|
|
4478
|
-
}
|
|
4479
|
-
|
|
4480
|
-
//#endregion
|
|
4481
|
-
init_jiti();
|
|
4482
|
-
export { createJiti, createJiti as default };
|
|
4476
|
+
}))();
|
|
4477
|
+
export { createJiti, createJiti as default };
|
|
@@ -1,20 +1,19 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { t as __exportAll } from "./rolldown-runtime-
|
|
2
|
+
import { t as __exportAll } from "./rolldown-runtime-1wn-XonI.mjs";
|
|
3
3
|
import { cwd } from "node:process";
|
|
4
4
|
import c from "node:readline";
|
|
5
5
|
import { existsSync } from "node:fs";
|
|
6
|
-
import { delimiter, dirname,
|
|
6
|
+
import { delimiter, dirname, normalize, resolve } from "node:path";
|
|
7
7
|
import { readFile } from "node:fs/promises";
|
|
8
8
|
import { createRequire as createRequire$1 } from "module";
|
|
9
9
|
import { PassThrough } from "node:stream";
|
|
10
10
|
import { spawn } from "node:child_process";
|
|
11
|
-
|
|
12
11
|
//#region ../../node_modules/.pnpm/giget@3.1.2/node_modules/giget/dist/_chunks/libs/nypm.mjs
|
|
13
12
|
const _DRIVE_LETTER_START_RE = /^[A-Za-z]:\//;
|
|
14
13
|
function normalizeWindowsPath(e = ``) {
|
|
15
14
|
return e && e.replace(/\\/g, `/`).replace(_DRIVE_LETTER_START_RE, (e) => e.toUpperCase());
|
|
16
15
|
}
|
|
17
|
-
const _UNC_REGEX = /^[/\\]{2}/, _IS_ABSOLUTE_RE = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/, _DRIVE_LETTER_RE = /^[A-Za-z]:$/,
|
|
16
|
+
const _UNC_REGEX = /^[/\\]{2}/, _IS_ABSOLUTE_RE = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/, _DRIVE_LETTER_RE = /^[A-Za-z]:$/, normalize$1 = function(e) {
|
|
18
17
|
if (e.length === 0) return `.`;
|
|
19
18
|
e = normalizeWindowsPath(e);
|
|
20
19
|
let t = e.match(_UNC_REGEX), n = isAbsolute$1(e), r = e[e.length - 1] === `/`;
|
|
@@ -66,15 +65,6 @@ function normalizeString(e, t) {
|
|
|
66
65
|
}
|
|
67
66
|
const isAbsolute$1 = function(e) {
|
|
68
67
|
return _IS_ABSOLUTE_RE.test(e);
|
|
69
|
-
}, relative = function(e, t) {
|
|
70
|
-
let n = resolve$1(e).replace(_ROOT_FOLDER_RE, `$1`).split(`/`), r = resolve$1(t).replace(_ROOT_FOLDER_RE, `$1`).split(`/`);
|
|
71
|
-
if (r[0][1] === `:` && n[0][1] === `:` && n[0] !== r[0]) return r.join(`/`);
|
|
72
|
-
let i = [...n];
|
|
73
|
-
for (let e of i) {
|
|
74
|
-
if (r[0] !== e) break;
|
|
75
|
-
n.shift(), r.shift();
|
|
76
|
-
}
|
|
77
|
-
return [...n.map(() => `..`), ...r].join(`/`);
|
|
78
68
|
}, dirname$1 = function(e) {
|
|
79
69
|
let t = normalizeWindowsPath(e).replace(/\/$/, ``).split(`/`).slice(0, -1);
|
|
80
70
|
return t.length === 1 && _DRIVE_LETTER_RE.test(t[0]) && (t[0] += `/`), t.join(`/`) || (isAbsolute$1(e) ? `/` : `.`);
|
|
@@ -285,7 +275,7 @@ var T = h((e, t) => {
|
|
|
285
275
|
t.exports.command = r, t.exports.argument = i;
|
|
286
276
|
}), M = h((e, t) => {
|
|
287
277
|
t.exports = /^#!(.*)/;
|
|
288
|
-
}), N = h((e, t) => {
|
|
278
|
+
}), N$1 = h((e, t) => {
|
|
289
279
|
let n = M();
|
|
290
280
|
t.exports = (e = ``) => {
|
|
291
281
|
let t = e.match(n);
|
|
@@ -293,8 +283,8 @@ var T = h((e, t) => {
|
|
|
293
283
|
let [r, i] = t[0].replace(/#! ?/, ``).split(` `), a = r.split(`/`).pop();
|
|
294
284
|
return a === `env` ? i : i ? `${a} ${i}` : a;
|
|
295
285
|
};
|
|
296
|
-
}), P
|
|
297
|
-
let n = v(`fs`), r = N();
|
|
286
|
+
}), P = h((e, t) => {
|
|
287
|
+
let n = v(`fs`), r = N$1();
|
|
298
288
|
function i(e) {
|
|
299
289
|
let t = Buffer.alloc(150), i;
|
|
300
290
|
try {
|
|
@@ -304,7 +294,7 @@ var T = h((e, t) => {
|
|
|
304
294
|
}
|
|
305
295
|
t.exports = i;
|
|
306
296
|
}), F = h((e, t) => {
|
|
307
|
-
let n = v(`path`), r = A(), i = j(), a = P
|
|
297
|
+
let n = v(`path`), r = A(), i = j(), a = P(), o = process.platform === `win32`, s = /\.(?:com|exe)$/i, L = /node_modules[\\/].bin[\\/][^\\/]+\.cmd$/i;
|
|
308
298
|
function J(e) {
|
|
309
299
|
e.file = r(e);
|
|
310
300
|
let t = e.file && a(e.file);
|
|
@@ -676,6 +666,5 @@ async function installDependencies(e = {}) {
|
|
|
676
666
|
args: n
|
|
677
667
|
} };
|
|
678
668
|
}
|
|
679
|
-
|
|
680
669
|
//#endregion
|
|
681
|
-
export { resolve$1 as i, dirname$1 as n, dist_exports as r, basename$1 as t };
|
|
670
|
+
export { resolve$1 as i, dirname$1 as n, dist_exports as r, basename$1 as t };
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { n as __esmMin } from "./chunk-
|
|
2
|
+
import { n as __esmMin } from "./chunk-4zg6TaOy.mjs";
|
|
3
3
|
import path from "node:path";
|
|
4
4
|
import fs from "node:fs/promises";
|
|
5
5
|
import { fileURLToPath } from "node:url";
|
|
6
|
-
|
|
7
6
|
//#region ../../node_modules/.pnpm/@humanfs+core@0.19.1/node_modules/@humanfs/core/src/hfs.js
|
|
8
7
|
/**
|
|
9
8
|
* Asserts that the given path is a valid file path.
|
|
@@ -528,18 +527,15 @@ var init_hfs = __esmMin((() => {
|
|
|
528
527
|
}
|
|
529
528
|
};
|
|
530
529
|
}));
|
|
531
|
-
|
|
532
530
|
//#endregion
|
|
533
531
|
//#region ../../node_modules/.pnpm/@humanfs+core@0.19.1/node_modules/@humanfs/core/src/errors.js
|
|
534
532
|
var init_errors = __esmMin((() => {}));
|
|
535
|
-
|
|
536
533
|
//#endregion
|
|
537
534
|
//#region ../../node_modules/.pnpm/@humanfs+core@0.19.1/node_modules/@humanfs/core/src/index.js
|
|
538
535
|
var init_src$1 = __esmMin((() => {
|
|
539
536
|
init_hfs();
|
|
540
537
|
init_errors();
|
|
541
538
|
}));
|
|
542
|
-
|
|
543
539
|
//#endregion
|
|
544
540
|
//#region ../../node_modules/.pnpm/@humanwhocodes+retry@0.4.3/node_modules/@humanwhocodes/retry/dist/retrier.js
|
|
545
541
|
/**
|
|
@@ -873,7 +869,6 @@ var init_retrier = __esmMin((() => {
|
|
|
873
869
|
}
|
|
874
870
|
};
|
|
875
871
|
}));
|
|
876
|
-
|
|
877
872
|
//#endregion
|
|
878
873
|
//#region ../../node_modules/.pnpm/@humanfs+node@0.16.7/node_modules/@humanfs/node/src/node-hfs.js
|
|
879
874
|
var RETRY_ERROR_CODES, NodeHfsDirectoryEntry, NodeHfsImpl, NodeHfs, hfs;
|
|
@@ -1164,14 +1159,9 @@ var init_node_hfs = __esmMin((() => {
|
|
|
1164
1159
|
};
|
|
1165
1160
|
hfs = new NodeHfs();
|
|
1166
1161
|
}));
|
|
1167
|
-
|
|
1168
1162
|
//#endregion
|
|
1169
|
-
|
|
1170
|
-
var init_src = __esmMin((() => {
|
|
1163
|
+
__esmMin((() => {
|
|
1171
1164
|
init_node_hfs();
|
|
1172
1165
|
init_src$1();
|
|
1173
|
-
}));
|
|
1174
|
-
|
|
1175
|
-
//#endregion
|
|
1176
|
-
init_src();
|
|
1177
|
-
export { hfs };
|
|
1166
|
+
}))();
|
|
1167
|
+
export { hfs };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { t as __exportAll } from "./rolldown-runtime-
|
|
3
|
-
import
|
|
2
|
+
import { t as __exportAll } from "./rolldown-runtime-1wn-XonI.mjs";
|
|
3
|
+
import i from "node:assert";
|
|
4
4
|
import fs from "node:fs";
|
|
5
5
|
import path, { basename, join, posix, win32 } from "node:path";
|
|
6
6
|
import fs$1 from "node:fs/promises";
|
|
@@ -15,7 +15,6 @@ import { Buffer as Buffer$1 } from "buffer";
|
|
|
15
15
|
import * as realZlib$1 from "zlib";
|
|
16
16
|
import realZlib from "zlib";
|
|
17
17
|
import { randomBytes } from "node:crypto";
|
|
18
|
-
|
|
19
18
|
//#region ../../node_modules/.pnpm/giget@3.1.2/node_modules/giget/dist/_chunks/libs/@isaacs/fs-minipass.mjs
|
|
20
19
|
const proc = typeof process == `object` && process ? process : {
|
|
21
20
|
stdout: null,
|
|
@@ -538,7 +537,6 @@ var ReadStream = class extends Minipass {
|
|
|
538
537
|
}
|
|
539
538
|
}
|
|
540
539
|
};
|
|
541
|
-
|
|
542
540
|
//#endregion
|
|
543
541
|
//#region ../../node_modules/.pnpm/giget@3.1.2/node_modules/giget/dist/_chunks/libs/minizlib.mjs
|
|
544
542
|
const realZlibConstants = realZlib.constants || { ZLIB_VERNUM: 4736 }, constants$1 = Object.freeze(Object.assign(Object.create(null), {
|
|
@@ -796,7 +794,6 @@ var ZlibBase = class extends Minipass {
|
|
|
796
794
|
super(e, `ZstdDecompress`);
|
|
797
795
|
}
|
|
798
796
|
};
|
|
799
|
-
|
|
800
797
|
//#endregion
|
|
801
798
|
//#region ../../node_modules/.pnpm/giget@3.1.2/node_modules/giget/dist/_chunks/libs/chownr.mjs
|
|
802
799
|
const lchownSync = (t, n, r) => {
|
|
@@ -844,7 +841,6 @@ const lchownSync = (t, n, r) => {
|
|
|
844
841
|
for (let e of a) chownrKidSync(t, e, r, i);
|
|
845
842
|
return lchownSync(t, r, i);
|
|
846
843
|
};
|
|
847
|
-
|
|
848
844
|
//#endregion
|
|
849
845
|
//#region ../../node_modules/.pnpm/giget@3.1.2/node_modules/giget/dist/_chunks/libs/tar.mjs
|
|
850
846
|
const argmap = new Map([
|
|
@@ -2478,17 +2474,17 @@ var Unpack = class extends Parser {
|
|
|
2478
2474
|
}
|
|
2479
2475
|
return !0;
|
|
2480
2476
|
}
|
|
2481
|
-
[ONENTRY](e
|
|
2482
|
-
if (!this[CHECKPATH](e
|
|
2483
|
-
switch (
|
|
2477
|
+
[ONENTRY](e) {
|
|
2478
|
+
if (!this[CHECKPATH](e)) return e.resume();
|
|
2479
|
+
switch (i.equal(typeof e.absolute, `string`), e.type) {
|
|
2484
2480
|
case `Directory`:
|
|
2485
|
-
case `GNUDumpDir`: e
|
|
2481
|
+
case `GNUDumpDir`: e.mode && (e.mode |= 448);
|
|
2486
2482
|
case `File`:
|
|
2487
2483
|
case `OldFile`:
|
|
2488
2484
|
case `ContiguousFile`:
|
|
2489
2485
|
case `Link`:
|
|
2490
|
-
case `SymbolicLink`: return this[CHECKFS](e
|
|
2491
|
-
default: return this[UNSUPPORTED](e
|
|
2486
|
+
case `SymbolicLink`: return this[CHECKFS](e);
|
|
2487
|
+
default: return this[UNSUPPORTED](e);
|
|
2492
2488
|
}
|
|
2493
2489
|
}
|
|
2494
2490
|
[ONERROR](e, t) {
|
|
@@ -2936,6 +2932,5 @@ var esm_exports = __exportAll({
|
|
|
2936
2932
|
list: () => list,
|
|
2937
2933
|
replace: () => replace
|
|
2938
2934
|
});
|
|
2939
|
-
|
|
2940
2935
|
//#endregion
|
|
2941
|
-
export { esm_exports as t };
|
|
2936
|
+
export { esm_exports as t };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuetify/cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"description": "Vuetify CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -26,24 +26,139 @@
|
|
|
26
26
|
"directory": "packages/cli"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@bomb.sh/tab": "^0.0.
|
|
30
|
-
"@clack/prompts": "^1.
|
|
31
|
-
"citty": "^0.2.
|
|
29
|
+
"@bomb.sh/tab": "^0.0.14",
|
|
30
|
+
"@clack/prompts": "^1.1.0",
|
|
31
|
+
"citty": "^0.2.1",
|
|
32
32
|
"giget": "^3.1.2",
|
|
33
33
|
"kolorist": "^1.8.0",
|
|
34
34
|
"nypm": "^0.6.5",
|
|
35
35
|
"open": "^11.0.0",
|
|
36
36
|
"pathe": "^2.0.3",
|
|
37
|
-
"tsdown": "^0.
|
|
38
|
-
"@vuetify/cli-shared": "1.1.
|
|
37
|
+
"tsdown": "^0.21.3",
|
|
38
|
+
"@vuetify/cli-shared": "1.1.6"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@typescript-eslint/parser": "^8.
|
|
41
|
+
"@typescript-eslint/parser": "^8.57.0"
|
|
42
42
|
},
|
|
43
43
|
"exports": {
|
|
44
44
|
".": "./dist/index.mjs",
|
|
45
45
|
"./package.json": "./package.json"
|
|
46
46
|
},
|
|
47
|
+
"inlinedDependencies": {
|
|
48
|
+
"@babel/parser": "7.29.0",
|
|
49
|
+
"@bomb.sh/tab": "0.0.14",
|
|
50
|
+
"@clack/core": "1.1.0",
|
|
51
|
+
"@clack/prompts": "1.1.0",
|
|
52
|
+
"@eslint-community/eslint-utils": "4.9.1",
|
|
53
|
+
"@eslint-community/regexpp": "4.12.2",
|
|
54
|
+
"@eslint/config-array": "0.21.2",
|
|
55
|
+
"@eslint/eslintrc": "3.3.5",
|
|
56
|
+
"@eslint/js": "9.39.4",
|
|
57
|
+
"@eslint/object-schema": "2.1.7",
|
|
58
|
+
"@eslint/plugin-kit": "0.4.1",
|
|
59
|
+
"@humanfs/core": "0.19.1",
|
|
60
|
+
"@humanfs/node": "0.16.7",
|
|
61
|
+
"@humanwhocodes/retry": "0.4.3",
|
|
62
|
+
"@sindresorhus/slugify": "3.0.0",
|
|
63
|
+
"@sindresorhus/transliterate": "2.3.1",
|
|
64
|
+
"acorn": "8.15.0",
|
|
65
|
+
"acorn-jsx": "5.3.2",
|
|
66
|
+
"ajv": "6.14.0",
|
|
67
|
+
"balanced-match": "1.0.2",
|
|
68
|
+
"bignumber.js": "9.3.1",
|
|
69
|
+
"brace-expansion": "1.1.12",
|
|
70
|
+
"bundle-name": "4.1.0",
|
|
71
|
+
"callsites": "3.1.0",
|
|
72
|
+
"citty": "0.2.1",
|
|
73
|
+
"concat-map": "0.0.1",
|
|
74
|
+
"confbox": "0.2.2",
|
|
75
|
+
"debug": "4.4.3",
|
|
76
|
+
"default-browser": "5.4.0",
|
|
77
|
+
"default-browser-id": "5.0.0",
|
|
78
|
+
"define-lazy-prop": "3.0.0",
|
|
79
|
+
"escape-string-regexp": [
|
|
80
|
+
"4.0.0",
|
|
81
|
+
"5.0.0"
|
|
82
|
+
],
|
|
83
|
+
"eslint": "9.39.4",
|
|
84
|
+
"eslint-scope": "8.4.0",
|
|
85
|
+
"eslint-visitor-keys": [
|
|
86
|
+
"3.4.3",
|
|
87
|
+
"4.2.1"
|
|
88
|
+
],
|
|
89
|
+
"espree": "10.4.0",
|
|
90
|
+
"esquery": "1.7.0",
|
|
91
|
+
"esrecurse": "4.3.0",
|
|
92
|
+
"estraverse": "5.3.0",
|
|
93
|
+
"esutils": "2.0.3",
|
|
94
|
+
"exsolve": "1.0.8",
|
|
95
|
+
"fast-deep-equal": "3.1.3",
|
|
96
|
+
"fast-json-stable-stringify": "2.1.0",
|
|
97
|
+
"fdir": "6.5.0",
|
|
98
|
+
"file-entry-cache": "8.0.0",
|
|
99
|
+
"find-up": "5.0.0",
|
|
100
|
+
"flat-cache": "4.0.1",
|
|
101
|
+
"flatted": "3.3.3",
|
|
102
|
+
"giget": "3.1.2",
|
|
103
|
+
"glob-parent": "6.0.2",
|
|
104
|
+
"globals": "14.0.0",
|
|
105
|
+
"has-flag": "4.0.0",
|
|
106
|
+
"i18n-js": "4.5.3",
|
|
107
|
+
"ignore": "5.3.2",
|
|
108
|
+
"import-fresh": "3.3.1",
|
|
109
|
+
"imurmurhash": "0.1.4",
|
|
110
|
+
"is-docker": "3.0.0",
|
|
111
|
+
"is-extglob": "2.1.1",
|
|
112
|
+
"is-glob": "4.0.3",
|
|
113
|
+
"is-in-ssh": "1.0.0",
|
|
114
|
+
"is-inside-container": "1.0.0",
|
|
115
|
+
"is-interactive": "2.0.0",
|
|
116
|
+
"is-wsl": "3.1.0",
|
|
117
|
+
"jiti": "2.6.1",
|
|
118
|
+
"json-buffer": "3.0.1",
|
|
119
|
+
"json-schema-traverse": "0.4.1",
|
|
120
|
+
"json-stable-stringify-without-jsonify": "1.0.1",
|
|
121
|
+
"keyv": "4.5.4",
|
|
122
|
+
"kolorist": "1.8.0",
|
|
123
|
+
"levn": "0.4.1",
|
|
124
|
+
"locate-path": "6.0.0",
|
|
125
|
+
"lodash": "4.17.21",
|
|
126
|
+
"lodash.merge": "4.6.2",
|
|
127
|
+
"magicast": "0.5.2",
|
|
128
|
+
"make-plural": "7.5.0",
|
|
129
|
+
"minimatch": "3.1.5",
|
|
130
|
+
"ms": "2.1.3",
|
|
131
|
+
"natural-compare": "1.4.0",
|
|
132
|
+
"nypm": "0.6.5",
|
|
133
|
+
"open": "11.0.0",
|
|
134
|
+
"p-limit": "3.1.0",
|
|
135
|
+
"p-locate": "5.0.0",
|
|
136
|
+
"package-manager-detector": "1.6.0",
|
|
137
|
+
"parent-module": "1.0.1",
|
|
138
|
+
"path-exists": "4.0.0",
|
|
139
|
+
"pathe": "2.0.3",
|
|
140
|
+
"picomatch": "4.0.3",
|
|
141
|
+
"pkg-types": "2.3.0",
|
|
142
|
+
"powershell-utils": "0.1.0",
|
|
143
|
+
"prelude-ls": "1.2.1",
|
|
144
|
+
"resolve-from": "4.0.0",
|
|
145
|
+
"run-applescript": "7.1.0",
|
|
146
|
+
"semver": "7.7.4",
|
|
147
|
+
"sisteransi": "1.0.5",
|
|
148
|
+
"strip-json-comments": "3.1.1",
|
|
149
|
+
"supports-color": "7.2.0",
|
|
150
|
+
"tinyexec": [
|
|
151
|
+
"1.0.2",
|
|
152
|
+
"1.0.4"
|
|
153
|
+
],
|
|
154
|
+
"tinyglobby": "0.2.15",
|
|
155
|
+
"type-check": "0.4.0",
|
|
156
|
+
"uri-js": "4.4.1",
|
|
157
|
+
"validate-npm-package-name": "7.0.2",
|
|
158
|
+
"vue-eslint-parser": "10.4.0",
|
|
159
|
+
"wsl-utils": "0.3.0",
|
|
160
|
+
"yocto-queue": "0.1.0"
|
|
161
|
+
},
|
|
47
162
|
"scripts": {
|
|
48
163
|
"build": "tsdown"
|
|
49
164
|
}
|
package/dist/nypm-Dl0ysHx5.mjs
DELETED