heading-case 1.1.2 → 1.1.4
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/index.js +60 -213
- package/package.json +13 -11
package/dist/index.js
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { execFileSync } from "node:child_process";
|
|
2
2
|
import node_fs from "node:fs";
|
|
3
3
|
import node_util from "node:util";
|
|
4
|
-
import node_process from "node:process";
|
|
5
|
-
import node_os from "node:os";
|
|
6
|
-
import node_tty from "node:tty";
|
|
7
4
|
import * as __rspack_external_fs from "fs";
|
|
8
5
|
import { readdir, readdirSync, realpath, realpathSync, stat as external_fs_stat, statSync } from "fs";
|
|
9
6
|
import { basename, dirname, isAbsolute, normalize, posix, relative as external_path_relative, resolve, sep } from "path";
|
|
@@ -31,11 +28,15 @@ __webpack_require__.m = __webpack_modules__;
|
|
|
31
28
|
};
|
|
32
29
|
})();
|
|
33
30
|
(()=>{
|
|
34
|
-
__webpack_require__.d = (exports,
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
31
|
+
__webpack_require__.d = (exports, getters, values)=>{
|
|
32
|
+
var define = (defs, kind)=>{
|
|
33
|
+
for(var key in defs)if (__webpack_require__.o(defs, key) && !__webpack_require__.o(exports, key)) Object.defineProperty(exports, key, {
|
|
34
|
+
enumerable: true,
|
|
35
|
+
[kind]: defs[key]
|
|
36
|
+
});
|
|
37
|
+
};
|
|
38
|
+
define(getters, "get");
|
|
39
|
+
define(values, "value");
|
|
39
40
|
};
|
|
40
41
|
})();
|
|
41
42
|
(()=>{
|
|
@@ -1756,147 +1757,9 @@ const color = {
|
|
|
1756
1757
|
underline: createStyler('underline'),
|
|
1757
1758
|
strikethrough: createStyler('strikethrough')
|
|
1758
1759
|
};
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
const terminatorPosition = argv.indexOf('--');
|
|
1763
|
-
return -1 !== position && (-1 === terminatorPosition || position < terminatorPosition);
|
|
1764
|
-
}
|
|
1765
|
-
const { env: env } = node_process;
|
|
1766
|
-
let flagForceColor;
|
|
1767
|
-
if (hasFlag('no-color') || hasFlag('no-colors') || hasFlag('color=false') || hasFlag('color=never')) flagForceColor = 0;
|
|
1768
|
-
else if (hasFlag('color') || hasFlag('colors') || hasFlag('color=true') || hasFlag('color=always')) flagForceColor = 1;
|
|
1769
|
-
function envForceColor() {
|
|
1770
|
-
if (!('FORCE_COLOR' in env)) return;
|
|
1771
|
-
if ('true' === env.FORCE_COLOR) return 1;
|
|
1772
|
-
if ('false' === env.FORCE_COLOR) return 0;
|
|
1773
|
-
if (0 === env.FORCE_COLOR.length) return 1;
|
|
1774
|
-
const level = Math.min(Number.parseInt(env.FORCE_COLOR, 10), 3);
|
|
1775
|
-
if (![
|
|
1776
|
-
0,
|
|
1777
|
-
1,
|
|
1778
|
-
2,
|
|
1779
|
-
3
|
|
1780
|
-
].includes(level)) return;
|
|
1781
|
-
return level;
|
|
1782
|
-
}
|
|
1783
|
-
function translateLevel(level) {
|
|
1784
|
-
if (0 === level) return false;
|
|
1785
|
-
return {
|
|
1786
|
-
level,
|
|
1787
|
-
hasBasic: true,
|
|
1788
|
-
has256: level >= 2,
|
|
1789
|
-
has16m: level >= 3
|
|
1790
|
-
};
|
|
1791
|
-
}
|
|
1792
|
-
function _supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) {
|
|
1793
|
-
const noFlagForceColor = envForceColor();
|
|
1794
|
-
if (void 0 !== noFlagForceColor) flagForceColor = noFlagForceColor;
|
|
1795
|
-
const forceColor = sniffFlags ? flagForceColor : noFlagForceColor;
|
|
1796
|
-
if (0 === forceColor) return 0;
|
|
1797
|
-
if (sniffFlags) {
|
|
1798
|
-
if (hasFlag('color=16m') || hasFlag('color=full') || hasFlag('color=truecolor')) return 3;
|
|
1799
|
-
if (hasFlag('color=256')) return 2;
|
|
1800
|
-
}
|
|
1801
|
-
if ('TF_BUILD' in env && 'AGENT_NAME' in env) return 1;
|
|
1802
|
-
if (haveStream && !streamIsTTY && void 0 === forceColor) return 0;
|
|
1803
|
-
const min = forceColor || 0;
|
|
1804
|
-
if ('dumb' === env.TERM) return min;
|
|
1805
|
-
if ('win32' === node_process.platform) {
|
|
1806
|
-
const osRelease = node_os.release().split('.');
|
|
1807
|
-
if (Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
1808
|
-
return 1;
|
|
1809
|
-
}
|
|
1810
|
-
if ('CI' in env) {
|
|
1811
|
-
if ([
|
|
1812
|
-
'GITHUB_ACTIONS',
|
|
1813
|
-
'GITEA_ACTIONS',
|
|
1814
|
-
'CIRCLECI'
|
|
1815
|
-
].some((key)=>key in env)) return 3;
|
|
1816
|
-
if ([
|
|
1817
|
-
'TRAVIS',
|
|
1818
|
-
'APPVEYOR',
|
|
1819
|
-
'GITLAB_CI',
|
|
1820
|
-
'BUILDKITE',
|
|
1821
|
-
'DRONE'
|
|
1822
|
-
].some((sign)=>sign in env) || 'codeship' === env.CI_NAME) return 1;
|
|
1823
|
-
return min;
|
|
1824
|
-
}
|
|
1825
|
-
if ('TEAMCITY_VERSION' in env) return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
|
1826
|
-
if ('truecolor' === env.COLORTERM) return 3;
|
|
1827
|
-
if ('xterm-kitty' === env.TERM) return 3;
|
|
1828
|
-
if ('xterm-ghostty' === env.TERM) return 3;
|
|
1829
|
-
if ('wezterm' === env.TERM) return 3;
|
|
1830
|
-
if ('TERM_PROGRAM' in env) {
|
|
1831
|
-
const version = Number.parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10);
|
|
1832
|
-
switch(env.TERM_PROGRAM){
|
|
1833
|
-
case 'iTerm.app':
|
|
1834
|
-
return version >= 3 ? 3 : 2;
|
|
1835
|
-
case 'Apple_Terminal':
|
|
1836
|
-
return 2;
|
|
1837
|
-
}
|
|
1838
|
-
}
|
|
1839
|
-
if (/-256(color)?$/i.test(env.TERM)) return 2;
|
|
1840
|
-
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) return 1;
|
|
1841
|
-
if ('COLORTERM' in env) return 1;
|
|
1842
|
-
return min;
|
|
1843
|
-
}
|
|
1844
|
-
function createSupportsColor(stream, options = {}) {
|
|
1845
|
-
const level = _supportsColor(stream, {
|
|
1846
|
-
streamIsTTY: stream && stream.isTTY,
|
|
1847
|
-
...options
|
|
1848
|
-
});
|
|
1849
|
-
return translateLevel(level);
|
|
1850
|
-
}
|
|
1851
|
-
const supportsColor = {
|
|
1852
|
-
stdout: createSupportsColor({
|
|
1853
|
-
isTTY: node_tty.isatty(1)
|
|
1854
|
-
}),
|
|
1855
|
-
stderr: createSupportsColor({
|
|
1856
|
-
isTTY: node_tty.isatty(2)
|
|
1857
|
-
})
|
|
1858
|
-
};
|
|
1859
|
-
const supports_color = supportsColor;
|
|
1860
|
-
const colorLevel = supports_color.stdout ? supports_color.stdout.level : 0;
|
|
1861
|
-
let errorStackRegExp = /at [^\r\n]{0,200}:\d+:\d+[\s\)]*$/;
|
|
1862
|
-
let anonymousErrorStackRegExp = /at [^\r\n]{0,200}\(<anonymous>\)$/;
|
|
1863
|
-
let indexErrorStackRegExp = /at [^\r\n]{0,200}\(index\s\d+\)$/;
|
|
1864
|
-
let isErrorStackMessage = (message)=>errorStackRegExp.test(message) || anonymousErrorStackRegExp.test(message) || indexErrorStackRegExp.test(message);
|
|
1865
|
-
let startColor = [
|
|
1866
|
-
189,
|
|
1867
|
-
255,
|
|
1868
|
-
243
|
|
1869
|
-
];
|
|
1870
|
-
let endColor = [
|
|
1871
|
-
74,
|
|
1872
|
-
194,
|
|
1873
|
-
154
|
|
1874
|
-
];
|
|
1875
|
-
let isWord = (char)=>!/[\s\n]/.test(char);
|
|
1876
|
-
let gradient = (message)=>{
|
|
1877
|
-
if (colorLevel < 3) return 2 === colorLevel ? color.cyan(message) : message;
|
|
1878
|
-
let chars = [
|
|
1879
|
-
...message
|
|
1880
|
-
];
|
|
1881
|
-
let steps = chars.filter(isWord).length;
|
|
1882
|
-
let r = startColor[0];
|
|
1883
|
-
let g = startColor[1];
|
|
1884
|
-
let b = startColor[2];
|
|
1885
|
-
let rStep = (endColor[0] - r) / steps;
|
|
1886
|
-
let gStep = (endColor[1] - g) / steps;
|
|
1887
|
-
let bStep = (endColor[2] - b) / steps;
|
|
1888
|
-
let output = '';
|
|
1889
|
-
for (let char of chars){
|
|
1890
|
-
if (isWord(char)) {
|
|
1891
|
-
r += rStep;
|
|
1892
|
-
g += gStep;
|
|
1893
|
-
b += bStep;
|
|
1894
|
-
}
|
|
1895
|
-
output += `\x1b[38;2;${Math.round(r)};${Math.round(g)};${Math.round(b)}m${char}\x1b[39m`;
|
|
1896
|
-
}
|
|
1897
|
-
return color.bold(output);
|
|
1898
|
-
};
|
|
1899
|
-
let LOG_LEVEL = {
|
|
1760
|
+
const supportsTrueColor = true === process.stdout.isTTY && process.stdout.hasColors(2 ** 24, process.env);
|
|
1761
|
+
const boldMint = (text)=>supportsTrueColor ? `\x1b[1;38;2;132;225;199m${text}\x1b[39;22m` : color.bold(color.cyan(text));
|
|
1762
|
+
const LOG_LEVEL = {
|
|
1900
1763
|
silent: -1,
|
|
1901
1764
|
error: 0,
|
|
1902
1765
|
warn: 1,
|
|
@@ -1904,68 +1767,47 @@ let LOG_LEVEL = {
|
|
|
1904
1767
|
log: 2,
|
|
1905
1768
|
verbose: 3
|
|
1906
1769
|
};
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
start: {
|
|
1924
|
-
label: 'start',
|
|
1925
|
-
level: 'info',
|
|
1926
|
-
color: color.cyan
|
|
1927
|
-
},
|
|
1928
|
-
ready: {
|
|
1929
|
-
label: 'ready',
|
|
1930
|
-
level: 'info',
|
|
1931
|
-
color: color.green
|
|
1932
|
-
},
|
|
1933
|
-
success: {
|
|
1934
|
-
label: 'success',
|
|
1935
|
-
level: 'info',
|
|
1936
|
-
color: color.green
|
|
1937
|
-
},
|
|
1770
|
+
const createLogType = (label, level, style)=>{
|
|
1771
|
+
let formattedLabel;
|
|
1772
|
+
return {
|
|
1773
|
+
get label () {
|
|
1774
|
+
return formattedLabel ??= color.bold(style(label.padEnd(7)));
|
|
1775
|
+
},
|
|
1776
|
+
level
|
|
1777
|
+
};
|
|
1778
|
+
};
|
|
1779
|
+
const LOG_TYPES = {
|
|
1780
|
+
error: createLogType('error', 'error', color.red),
|
|
1781
|
+
warn: createLogType('warn', 'warn', color.yellow),
|
|
1782
|
+
info: createLogType('info', 'info', color.cyan),
|
|
1783
|
+
start: createLogType('start', 'info', color.cyan),
|
|
1784
|
+
ready: createLogType('ready', 'info', color.green),
|
|
1785
|
+
success: createLogType('success', 'info', color.green),
|
|
1938
1786
|
log: {
|
|
1939
1787
|
level: 'info'
|
|
1940
1788
|
},
|
|
1941
|
-
debug:
|
|
1942
|
-
label: 'debug',
|
|
1943
|
-
level: 'verbose',
|
|
1944
|
-
color: color.magenta
|
|
1945
|
-
}
|
|
1789
|
+
debug: createLogType('debug', 'verbose', color.magenta)
|
|
1946
1790
|
};
|
|
1791
|
+
const errorStackRegExp = /at [^\r\n]{0,200}(?::\d+:\d+[\s)]*|\(<anonymous>\)|\(index\s\d+\))$/;
|
|
1792
|
+
const isErrorStackMessage = (message)=>errorStackRegExp.test(message);
|
|
1947
1793
|
const normalizeErrorMessage = (err)=>{
|
|
1948
1794
|
if (err.stack) {
|
|
1949
|
-
|
|
1950
|
-
|
|
1795
|
+
const [rawName, ...rest] = err.stack.split('\n');
|
|
1796
|
+
const name = rawName.startsWith('Error: ') ? rawName.slice(7) : rawName;
|
|
1951
1797
|
return `${name}\n${color.gray(rest.join('\n'))}`;
|
|
1952
1798
|
}
|
|
1953
1799
|
return err.message;
|
|
1954
1800
|
};
|
|
1955
|
-
|
|
1801
|
+
const createLogger = (options = {})=>{
|
|
1956
1802
|
const { level = 'info', prefix, console: console1 = globalThis.console } = options;
|
|
1957
1803
|
let maxLevel = level;
|
|
1958
|
-
|
|
1959
|
-
|
|
1804
|
+
const log = (type, message, ...args)=>{
|
|
1805
|
+
const logType = LOG_TYPES[type];
|
|
1960
1806
|
const { level } = logType;
|
|
1961
1807
|
if (LOG_LEVEL[level] > LOG_LEVEL[maxLevel]) return;
|
|
1962
1808
|
if (null == message) return console1.log();
|
|
1963
|
-
|
|
1809
|
+
const label = 'label' in logType ? logType.label : '';
|
|
1964
1810
|
let text = '';
|
|
1965
|
-
if ('label' in logType) {
|
|
1966
|
-
label = (logType.label || '').padEnd(7);
|
|
1967
|
-
label = color.bold(logType.color ? logType.color(label) : label);
|
|
1968
|
-
}
|
|
1969
1811
|
if (message instanceof Error) {
|
|
1970
1812
|
text += normalizeErrorMessage(message);
|
|
1971
1813
|
const { cause } = message;
|
|
@@ -1974,15 +1816,15 @@ let createLogger = (options = {})=>{
|
|
|
1974
1816
|
text += cause instanceof Error ? normalizeErrorMessage(cause) : String(cause);
|
|
1975
1817
|
}
|
|
1976
1818
|
} else if ('error' === level && 'string' == typeof message) {
|
|
1977
|
-
|
|
1819
|
+
const lines = message.split('\n');
|
|
1978
1820
|
text = lines.map((line)=>isErrorStackMessage(line) ? color.gray(line) : line).join('\n');
|
|
1979
1821
|
} else text = `${message}`;
|
|
1980
1822
|
if (prefix) text = `${prefix} ${text}`;
|
|
1981
1823
|
const method = 'error' === level || 'warn' === level ? level : 'log';
|
|
1982
|
-
console1[method](label
|
|
1824
|
+
console1[method](label ? `${label} ${text}` : text, ...args);
|
|
1983
1825
|
};
|
|
1984
|
-
|
|
1985
|
-
greet: (message)=>log('log',
|
|
1826
|
+
const logger = {
|
|
1827
|
+
greet: (message)=>log('log', boldMint(message))
|
|
1986
1828
|
};
|
|
1987
1829
|
Object.keys(LOG_TYPES).forEach((key)=>{
|
|
1988
1830
|
logger[key] = (...args)=>log(key, ...args);
|
|
@@ -2003,7 +1845,7 @@ let createLogger = (options = {})=>{
|
|
|
2003
1845
|
};
|
|
2004
1846
|
return logger;
|
|
2005
1847
|
};
|
|
2006
|
-
|
|
1848
|
+
const src_logger = createLogger();
|
|
2007
1849
|
var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
2008
1850
|
function cleanPath(path) {
|
|
2009
1851
|
let normalized = normalize(path);
|
|
@@ -2492,6 +2334,7 @@ var Builder = class {
|
|
|
2492
2334
|
const picomatch = __webpack_require__("./node_modules/.pnpm/picomatch@4.0.4/node_modules/picomatch/index.js");
|
|
2493
2335
|
const isReadonlyArray = Array.isArray;
|
|
2494
2336
|
const BACKSLASHES = /\\/g;
|
|
2337
|
+
const DRIVE_RELATIVE_PATH = /^[A-Za-z]:$/;
|
|
2495
2338
|
const isWin = "win32" === process.platform;
|
|
2496
2339
|
const ONLY_PARENT_DIRECTORIES = /^(\/?\.\.)+$/;
|
|
2497
2340
|
function getPartialMatcher(patterns, options = {}) {
|
|
@@ -2557,6 +2400,9 @@ function buildRelative(cwd, root) {
|
|
|
2557
2400
|
return "/" === p[p.length - 1] && "" !== result ? `${result}/` : result || ".";
|
|
2558
2401
|
};
|
|
2559
2402
|
}
|
|
2403
|
+
function ensureNonDriveRelativePath(path) {
|
|
2404
|
+
return path.replace(DRIVE_RELATIVE_PATH, (match)=>`${match}/`);
|
|
2405
|
+
}
|
|
2560
2406
|
const splitPatternOptions = {
|
|
2561
2407
|
parts: true
|
|
2562
2408
|
};
|
|
@@ -2607,7 +2453,7 @@ function normalizePattern(pattern, opts, props, isIgnore) {
|
|
|
2607
2453
|
}
|
|
2608
2454
|
const potentialRoot = posix.join(cwd, parentDir.slice(3 * i));
|
|
2609
2455
|
if ("." !== potentialRoot[0] && props.root.length > potentialRoot.length) {
|
|
2610
|
-
props.root = potentialRoot;
|
|
2456
|
+
props.root = ensureNonDriveRelativePath(potentialRoot);
|
|
2611
2457
|
props.depthOffset = -n + i;
|
|
2612
2458
|
}
|
|
2613
2459
|
}
|
|
@@ -2626,7 +2472,7 @@ function normalizePattern(pattern, opts, props, isIgnore) {
|
|
|
2626
2472
|
}
|
|
2627
2473
|
props.depthOffset = newCommonPath.length;
|
|
2628
2474
|
props.commonPath = newCommonPath;
|
|
2629
|
-
props.root = newCommonPath.length > 0 ? posix.join(cwd, ...newCommonPath) : cwd;
|
|
2475
|
+
props.root = ensureNonDriveRelativePath(newCommonPath.length > 0 ? posix.join(cwd, ...newCommonPath) : cwd);
|
|
2630
2476
|
}
|
|
2631
2477
|
return result;
|
|
2632
2478
|
}
|
|
@@ -2718,18 +2564,17 @@ function formatPaths(paths, mapper) {
|
|
|
2718
2564
|
}
|
|
2719
2565
|
const defaultOptions = {
|
|
2720
2566
|
caseSensitiveMatch: true,
|
|
2721
|
-
cwd: process.cwd(),
|
|
2722
2567
|
debug: !!process.env.TINYGLOBBY_DEBUG,
|
|
2723
2568
|
expandDirectories: true,
|
|
2724
2569
|
followSymbolicLinks: true,
|
|
2725
2570
|
onlyFiles: true
|
|
2726
2571
|
};
|
|
2727
2572
|
function getOptions(options) {
|
|
2728
|
-
const opts = {
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
};
|
|
2732
|
-
opts.cwd = (opts.cwd instanceof URL ? fileURLToPath(opts.cwd) : resolve(opts.cwd)).replace(BACKSLASHES, "/");
|
|
2573
|
+
const opts = Object.assign({}, options);
|
|
2574
|
+
for(const key in defaultOptions)if (void 0 === opts[key]) Object.assign(opts, {
|
|
2575
|
+
[key]: defaultOptions[key]
|
|
2576
|
+
});
|
|
2577
|
+
opts.cwd = (opts.cwd instanceof URL ? fileURLToPath(opts.cwd) : resolve(opts.cwd || process.cwd())).replace(BACKSLASHES, "/");
|
|
2733
2578
|
opts.ignore = ensureStringArray(opts.ignore);
|
|
2734
2579
|
opts.fs && (opts.fs = {
|
|
2735
2580
|
readdir: opts.fs.readdir || readdir,
|
|
@@ -2754,11 +2599,11 @@ async function glob(globInput, options) {
|
|
|
2754
2599
|
const [crawler, relative] = getCrawler(globInput, options);
|
|
2755
2600
|
return crawler ? formatPaths(await crawler.withPromise(), relative) : [];
|
|
2756
2601
|
}
|
|
2757
|
-
var abbreviates_namespaceObject = JSON.parse('{"abi":"ABI","amd":"AMD","api":"API","ast":"AST","bom":"BOM","bsd":"BSD","cdn":"CDN","cjs":"CJS","cli":"CLI","cncf":"CNCF","cors":"CORS","cpu":"CPU","crud":"CRUD","csrf":"CSRF","css":"CSS","csv":"CSV","db2":"DB2","dns":"DNS","dom":"DOM","dos":"DOS","es6":"ES6","esm":"ESM","fbi":"FBI","ftp":"FTP","ftps":"FTPS","gcc":"GCC","gcp":"GCP","glsl":"GLSL","gorm":"GORM","gpl":"GPL","gps":"GPS","gpu":"GPU","gre":"GRE","gui":"GUI","hdmi":"HDMI","hmr":"HMR","html":"HTML","http":"HTTP","https":"HTTPS","iife":"IIFE","iot":"IoT","ipc":"IPC","ipfs":"IPFS","ipmi":"IPMI","jdbc":"JDBC","jdk":"JDK","jit":"JIT","jpeg":"JPEG","jpg":"JPG","jre":"JRE","jsf":"JSF","json":"JSON","jsonp":"JSONP","jsp":"JSP","jwt":"JWT","kcp":"KCP","kde":"KDE","kpi":"KPI","lfu":"LFU","llvm":"LLVM","lru":"LRU","lts":"LTS","mdn":"MDN","mdx":"MDX","mvc":"MVC","mvp":"MVP","mvvm":"MVVM","nft":"NFT","odbc":"ODBC","ont":"ONT","orm":"ORM","oss":"OSS","pdf":"PDF","pdo":"PDO","posix":"POSIX","pwa":"PWA","qemu":"QEMU","qgis":"QGIS","quic":"QUIC","rfc":"RFC","rom":"ROM","rpc":"RPC","rss":"RSS","rss3":"RSS3","sdk":"SDK","seo":"SEO","sip":"SIP","smtp":"SMTP","sql":"SQL","sre":"SRE","ssg":"SSG","ssh":"SSH","sso":"SSO","ssr":"SSR","stp":"STP","svg":"SVG","svn":"SVN","tcp":"TCP","tls":"TLS","toml":"TOML","tsc":"TSC","udp":"UDP","umd":"UMD","uri":"URI","url":"URL","usb":"USB","vlan":"VLAN","vnc":"VNC","vpn":"VPN","vps":"VPS","wgsl":"WGSL","wlan":"WLAN","wsa":"WSA","wsl":"WSL","xhtml":"XHTML","xml":"XML","xss":"XSS","yaml":"YAML"}');
|
|
2758
|
-
var brands_namespaceObject = JSON.parse('{"airbnb":"Airbnb","alphago":"AlphaGo","bitbucket":"Bitbucket","bytedance":"ByteDance","circleci":"CircleCI","cloudflare":"Cloudflare","freecodecamp":"freeCodeCamp","gitea":"Gitea","gitee":"Gitee","github":"GitHub","gitlab":"GitLab","gitops":"GitOps","gitpod":"Gitpod","hp":"HP","ibm":"IBM","jsdelivr":"jsDelivr","kfc":"KFC","leetcode":"LeetCode","linkedin":"LinkedIn","mcdonald":"McDonald","nvidia":"NVIDIA","pagerduty":"PagerDuty","producthunt":"Product Hunt","stackblitz":"StackBlitz","stackit":"STACKIT","stackoverflow":"Stack Overflow","unjs":"UnJS","v2ex":"V2EX","vuefes":"Vue Fes","youtube":"YouTube"}');
|
|
2759
|
-
var general_namespaceObject = JSON.parse('{"aiaas":"AIaaS","baas":"BaaS","caas":"CaaS","daas":"DaaS","ddos":"DDoS","devops":"DevOps","devtools":"DevTools","esim":"eSIM","faas":"FaaS","iac":"IaC","iaas":"IaaS","ioc":"IoC","ipsec":"IPsec","mpaas":"mPaaS","paas":"PaaS","saas":"SaaS","wifi":"Wi-Fi","xaas":"XaaS"}');
|
|
2760
|
-
var products_namespaceObject = JSON.parse('{"airdrop":"AirDrop","airpods":"AirPods","airtag":"AirTag","homekit":"HomeKit","homepod":"HomePod","imac":"iMac","ipad":"iPad","iphone":"iPhone","ipod":"iPod","macbook":"MacBook","macbook air":"MacBook Air","macbook pro":"MacBook Pro","yubikey":"YubiKey"}');
|
|
2761
|
-
var softwares_namespaceObject = JSON.parse('{"1password":"1Password","3dtiles":"3DTiles","actionscript":"ActionScript","adblock":"AdBlock","ajax":"AJAX","alipay":"Alipay","amap":"AMap","angularjs":"AngularJS","ant design":"Ant Design","ant design vue":"Ant Design Vue","antd":"AntD","antdesign":"AntDesign","antdesignvue":"AntDesignVue","antv":"AntV","apifox":"Apifox","app store":"App Store","apple pay":"Apple Pay","applescript":"AppleScript","appletalk":"AppleTalk","arangodb":"ArangoDB","arcgis":"ArcGIS","arcmap":"ArcMap","arcobjects":"ArcObjects","beego":"Beego","bittorrent":"BitTorrent","bluesky":"Bluesky","busybox":"BusyBox","centos":"CentOS","cesiumjs":"CesiumJS","chatgpt":"ChatGPT","citygml":"CityGML","cityjson":"CityJSON","ckeditor":"CKEditor","clashx":"ClashX","clickhouse":"ClickHouse","cloudfront":"CloudFront","cmake":"CMake","cockroachdb":"CockroachDB","cocoapods":"CocoaPods","codepen":"CodePen","codesandbox":"CodeSandbox","coffeescript":"CoffeeScript","commonjs":"CommonJS","composition api":"Composition API","compositionapi":"CompositionAPI","coredns":"CoreDNS","css modules":"CSS Modules","dapr":"Dapr","datadog":"Datadog","datagrip":"DataGrip","dbase":"dBase","definitelytyped":"DefinitelyTyped","denodeploy":"DenoDeploy","digital ocean":"DigitalOcean","digitalocean":"DigitalOcean","dingtalk":"DingTalk","directx":"DirectX","django":"Django","duckduckgo":"DuckDuckGo","dynamodb":"DynamoDB","echarts":"ECharts","ecmascript":"ECMAScript","edgedb":"EdgeDB","eggjs":"Egg.js","elasticsearch":"Elasticsearch","element plus":"Element Plus","elementui":"ElementUI","esbuild":"esbuild","eslint":"ESLint","esxi":"ESXi","etcd":"etcd","facetime":"FaceTime","fastapi":"FastAPI","ffmpeg":"FFmpeg","filezilla":"FileZilla","firefox":"Firefox","freemarker":"FreeMarker","gdnative":"GDNative","gdscript":"GDScript","geforce":"GeForce","geojson":"GeoJSON","geopackage":"GeoPackage","geopandas":"GeoPandas","geoserver":"GeoServer","gitbook":"GitBook","gitkraken":"GitKraken","gltf":"glTF","gnome":"GNOME","gnu":"GNU","gnupg":"GnuPG","goland":"GoLand","google pay":"Google Pay","graph rag":"Graph RAG","graphql":"GraphQL","graphrag":"GraphRAG","greensock":"GreenSock","grpc":"gRPC","hackernews":"Hacker News","hacpai":"HacPai","hbase":"HBase","hbuilderx":"HBuilderX","ibook":"iBook","icloud":"iCloud","idrac":"iDRAC","ilo":"iLO","imessage":"iMessage","imovie":"iMovie","imtoken":"imToken","influxdb":"InfluxDB","intellij":"IntelliJ","intellij idea":"IntelliJ IDEA","ios":"iOS","ipados":"iPadOS","iphoto":"iPhoto","iscsi":"iSCSI","iterm":"iTerm","itunes":"iTunes","iwork":"iWork","javascript":"JavaScript","jetbrains":"JetBrains","jquery":"jQuery","jsdoc":"JSDoc","jupyterlab":"JupyterLab","katex":"KaTeX","kubernetes":"Kubernetes","latex":"LaTeX","less":"Less","libreoffice":"LibreOffice","line pay":"LINE Pay","lineageos":"LineageOS","macos":"macOS","mariadb":"MariaDB","markdown":"Markdown","markdownlint":"MarkdownLint","mathjax":"MathJax","mathml":"MathML","mathtype":"MathType","matlab":"MATLAB","mediawiki":"MediaWiki","memcached":"Memcached","messagepack":"MessagePack","metamask":"MetaMask","mkdocs":"MkDocs","mlaas":"MLaaS","mlops":"MLOps","mobx":"MobX","mongodb":"MongoDB","mongoose":"Mongoose","ms-dos":"MS-DOS","mybatis":"MyBatis","mysql":"MySQL","naive ui":"Naive UI","naiveui":"NaiveUI","neo4j":"Neo4j","nestjs":"NestJS","netbeans":"NetBeans","netbios":"NetBIOS","nextjs":"Next.js","nixos":"NixOS","nocodb":"NocoDB","node.js":"Node.js","nosql":"NoSQL","notepad ++":"Notepad++","npm":"npm","numpy":"NumPy","nuxtjs":"NuxtJS","oauth":"OAuth","obs":"OBS","ocaml":"OCaml","onedrive":"OneDrive","onenote":"OneNote","openai":"OpenAI","openapi":"OpenAPI","opencv":"OpenCV","openfaas":"OpenFaaS","openflow":"OpenFlow","opengauss":"openGauss","opengl":"OpenGL","opengl es":"OpenGL ES","openjdk":"OpenJDK","openlayers":"OpenLayers","openpgp":"OpenPGP","opensea":"OpenSea","openssl":"OpenSSL","openstack":"OpenStack","openstreetmap":"OpenStreetMap","opensuse":"openSUSE","openvino":"OpenVINO","openwrt":"OpenWrt","opnsense":"OPNsense","pagp":"PAgP","paypal":"PayPal","photoshop":"Photoshop","php":"PHP","phpstorm":"PhpStorm","pihole":"Pi-hole","planetscale":"PlanetScale","postcss":"PostCSS","postgis":"PostGIS","postgresql":"PostgreSQL","potplayer":"PotPlayer","powerpoint":"PowerPoint","powershell":"PowerShell","premid":"PreMiD","primevue":"PrimeVue","protobuf":"Protobuf","pycharm":"PyCharm","pytorch":"PyTorch","qtscript":"QtScript","raii":"RAII","react native":"React Native","redhat":"RedHat","redisearch":"RediSearch","redisjson":"RedisJSON","rescript":"ReScript","restful":"RESTful","rethinkdb":"RethinkDB","rsshub":"RSSHub","rust":"Rust","rxdb":"RxDB","rxjs":"RxJS","samsung pay":"Samsung Pay","sass":"Sass","scss":"SCSS","segmentfault":"SegmentFault","socket.io":"Socket.IO","solarwinds":"SolarWinds","spatiallite":"SpatialLite","spir-v":"SPIR-V","springboot":"SpringBoot","springcloud":"SpringCloud","springmvc":"SpringMVC","sqlite":"SQLite","sqlserver":"SQLServer","storybook":"Storybook","stylus":"Stylus","sublime text":"Sublime Text","surrealdb":"SurrealDB","sveltekit":"SvelteKit","tailwind css":"Tailwind CSS","tailwindcss":"TailwindCSS","teamviewer":"TeamViewer","tensorflow":"TensorFlow","testflight":"TestFlight","tex":"TeX","threejs":"ThreeJS","tianocore":"TianoCore","tidb":"TiDB","tiflash":"TiFlash","tiktok":"TikTok","tikv":"TiKV","travis ci":"Travis CI","trpc":"tRPC","tsconfig":"TSConfig","tsdoc":"TSDoc","tsdx":"TSdx","turbopack":"Turbopack","turborepo":"Turborepo","typeorm":"TypeORM","typescript":"TypeScript","uniapp":"uniapp","unifi":"UniFi","unix":"UNIX","unocss":"UnoCSS","upnp":"UPnP","vercel":"Vercel","videolan":"VideoLAN","vim":"Vim","virtualbox":"VirtualBox","visual studio":"Visual Studio","visual studio code":"Visual Studio Code","vitepress":"VitePress","vividcortex":"VividCortex","vlc":"VLC","vmware":"VMware","voip":"VoIP","vs code":"VS Code","vs codium":"VSCodium","vscode":"VS Code","vscodium":"VSCodium","vue cli":"Vue CLI","vuepress":"VuePress","vueuse":"VueUse","vulkan":"Vulkan","w3c":"W3C","wasm":"Wasm","watchos":"watchOS","web assembly":"WebAssembly","webar":"WebAR","webassembly":"WebAssembly","webgl":"WebGL","webgpu":"WebGPU","webkit":"WebKit","webpack":"webpack","webrtc":"WebRTC","websocket":"WebSocket","webstorm":"WebStorm","webvr":"WebVR","webxr":"WebXR","wechat":"WeChat","wechat pay":"WeChat Pay","whatsapp":"WhatsApp","windi css":"Windi CSS","windicss":"WindiCSS","wireguard":"WireGuard","wordpress":"WordPress","xmind":"XMind","xstate":"XState","yapi":"YApi"}');
|
|
2602
|
+
var abbreviates_namespaceObject = /*#__PURE__*/ JSON.parse('{"abi":"ABI","amd":"AMD","api":"API","ast":"AST","bom":"BOM","bsd":"BSD","cdn":"CDN","cjs":"CJS","cli":"CLI","cncf":"CNCF","cors":"CORS","cpu":"CPU","crud":"CRUD","csrf":"CSRF","css":"CSS","csv":"CSV","db2":"DB2","dns":"DNS","dom":"DOM","dos":"DOS","es6":"ES6","esm":"ESM","fbi":"FBI","ftp":"FTP","ftps":"FTPS","gcc":"GCC","gcp":"GCP","glsl":"GLSL","gorm":"GORM","gpl":"GPL","gps":"GPS","gpu":"GPU","gre":"GRE","gui":"GUI","hdmi":"HDMI","hmr":"HMR","html":"HTML","http":"HTTP","https":"HTTPS","iife":"IIFE","iot":"IoT","ipc":"IPC","ipfs":"IPFS","ipmi":"IPMI","jdbc":"JDBC","jdk":"JDK","jit":"JIT","jpeg":"JPEG","jpg":"JPG","jre":"JRE","jsf":"JSF","json":"JSON","jsonp":"JSONP","jsp":"JSP","jwt":"JWT","kcp":"KCP","kde":"KDE","kpi":"KPI","lfu":"LFU","llvm":"LLVM","lru":"LRU","lts":"LTS","mdn":"MDN","mdx":"MDX","mvc":"MVC","mvp":"MVP","mvvm":"MVVM","nft":"NFT","odbc":"ODBC","ont":"ONT","orm":"ORM","oss":"OSS","pdf":"PDF","pdo":"PDO","posix":"POSIX","pwa":"PWA","qemu":"QEMU","qgis":"QGIS","quic":"QUIC","rfc":"RFC","rom":"ROM","rpc":"RPC","rss":"RSS","rss3":"RSS3","sdk":"SDK","seo":"SEO","sip":"SIP","smtp":"SMTP","sql":"SQL","sre":"SRE","ssg":"SSG","ssh":"SSH","sso":"SSO","ssr":"SSR","stp":"STP","svg":"SVG","svn":"SVN","tcp":"TCP","tls":"TLS","toml":"TOML","tsc":"TSC","udp":"UDP","umd":"UMD","uri":"URI","url":"URL","usb":"USB","vlan":"VLAN","vnc":"VNC","vpn":"VPN","vps":"VPS","wgsl":"WGSL","wlan":"WLAN","wsa":"WSA","wsl":"WSL","xhtml":"XHTML","xml":"XML","xss":"XSS","yaml":"YAML"}');
|
|
2603
|
+
var brands_namespaceObject = /*#__PURE__*/ JSON.parse('{"airbnb":"Airbnb","alphago":"AlphaGo","bitbucket":"Bitbucket","bytedance":"ByteDance","circleci":"CircleCI","cloudflare":"Cloudflare","freecodecamp":"freeCodeCamp","gitea":"Gitea","gitee":"Gitee","github":"GitHub","gitlab":"GitLab","gitops":"GitOps","gitpod":"Gitpod","hp":"HP","ibm":"IBM","jsdelivr":"jsDelivr","kfc":"KFC","leetcode":"LeetCode","linkedin":"LinkedIn","mcdonald":"McDonald","nvidia":"NVIDIA","pagerduty":"PagerDuty","producthunt":"Product Hunt","stackblitz":"StackBlitz","stackit":"STACKIT","stackoverflow":"Stack Overflow","unjs":"UnJS","v2ex":"V2EX","vuefes":"Vue Fes","youtube":"YouTube"}');
|
|
2604
|
+
var general_namespaceObject = /*#__PURE__*/ JSON.parse('{"aiaas":"AIaaS","baas":"BaaS","caas":"CaaS","daas":"DaaS","ddos":"DDoS","devops":"DevOps","devtools":"DevTools","esim":"eSIM","faas":"FaaS","iac":"IaC","iaas":"IaaS","ioc":"IoC","ipsec":"IPsec","mpaas":"mPaaS","paas":"PaaS","saas":"SaaS","wifi":"Wi-Fi","xaas":"XaaS"}');
|
|
2605
|
+
var products_namespaceObject = /*#__PURE__*/ JSON.parse('{"airdrop":"AirDrop","airpods":"AirPods","airtag":"AirTag","homekit":"HomeKit","homepod":"HomePod","imac":"iMac","ipad":"iPad","iphone":"iPhone","ipod":"iPod","macbook":"MacBook","macbook air":"MacBook Air","macbook pro":"MacBook Pro","yubikey":"YubiKey"}');
|
|
2606
|
+
var softwares_namespaceObject = /*#__PURE__*/ JSON.parse('{"1password":"1Password","3dtiles":"3DTiles","actionscript":"ActionScript","adblock":"AdBlock","ajax":"AJAX","alipay":"Alipay","amap":"AMap","angularjs":"AngularJS","ant design":"Ant Design","ant design vue":"Ant Design Vue","antd":"AntD","antdesign":"AntDesign","antdesignvue":"AntDesignVue","antv":"AntV","apifox":"Apifox","app store":"App Store","apple pay":"Apple Pay","applescript":"AppleScript","appletalk":"AppleTalk","arangodb":"ArangoDB","arcgis":"ArcGIS","arcmap":"ArcMap","arcobjects":"ArcObjects","beego":"Beego","bittorrent":"BitTorrent","bluesky":"Bluesky","busybox":"BusyBox","centos":"CentOS","cesiumjs":"CesiumJS","chatgpt":"ChatGPT","citygml":"CityGML","cityjson":"CityJSON","ckeditor":"CKEditor","clashx":"ClashX","clickhouse":"ClickHouse","cloudfront":"CloudFront","cmake":"CMake","cockroachdb":"CockroachDB","cocoapods":"CocoaPods","codepen":"CodePen","codesandbox":"CodeSandbox","coffeescript":"CoffeeScript","commonjs":"CommonJS","composition api":"Composition API","compositionapi":"CompositionAPI","coredns":"CoreDNS","css modules":"CSS Modules","dapr":"Dapr","datadog":"Datadog","datagrip":"DataGrip","dbase":"dBase","definitelytyped":"DefinitelyTyped","denodeploy":"DenoDeploy","digital ocean":"DigitalOcean","digitalocean":"DigitalOcean","dingtalk":"DingTalk","directx":"DirectX","django":"Django","duckduckgo":"DuckDuckGo","dynamodb":"DynamoDB","echarts":"ECharts","ecmascript":"ECMAScript","edgedb":"EdgeDB","eggjs":"Egg.js","elasticsearch":"Elasticsearch","element plus":"Element Plus","elementui":"ElementUI","esbuild":"esbuild","eslint":"ESLint","esxi":"ESXi","etcd":"etcd","facetime":"FaceTime","fastapi":"FastAPI","ffmpeg":"FFmpeg","filezilla":"FileZilla","firefox":"Firefox","freemarker":"FreeMarker","gdnative":"GDNative","gdscript":"GDScript","geforce":"GeForce","geojson":"GeoJSON","geopackage":"GeoPackage","geopandas":"GeoPandas","geoserver":"GeoServer","gitbook":"GitBook","gitkraken":"GitKraken","gltf":"glTF","gnome":"GNOME","gnu":"GNU","gnupg":"GnuPG","goland":"GoLand","google pay":"Google Pay","graph rag":"Graph RAG","graphql":"GraphQL","graphrag":"GraphRAG","greensock":"GreenSock","grpc":"gRPC","hackernews":"Hacker News","hacpai":"HacPai","hbase":"HBase","hbuilderx":"HBuilderX","ibook":"iBook","icloud":"iCloud","idrac":"iDRAC","ilo":"iLO","imessage":"iMessage","imovie":"iMovie","imtoken":"imToken","influxdb":"InfluxDB","intellij":"IntelliJ","intellij idea":"IntelliJ IDEA","ios":"iOS","ipados":"iPadOS","iphoto":"iPhoto","iscsi":"iSCSI","iterm":"iTerm","itunes":"iTunes","iwork":"iWork","javascript":"JavaScript","jetbrains":"JetBrains","jquery":"jQuery","jsdoc":"JSDoc","jupyterlab":"JupyterLab","katex":"KaTeX","kubernetes":"Kubernetes","latex":"LaTeX","less":"Less","libreoffice":"LibreOffice","line pay":"LINE Pay","lineageos":"LineageOS","macos":"macOS","mariadb":"MariaDB","markdown":"Markdown","markdownlint":"MarkdownLint","mathjax":"MathJax","mathml":"MathML","mathtype":"MathType","matlab":"MATLAB","mediawiki":"MediaWiki","memcached":"Memcached","messagepack":"MessagePack","metamask":"MetaMask","mkdocs":"MkDocs","mlaas":"MLaaS","mlops":"MLOps","mobx":"MobX","mongodb":"MongoDB","mongoose":"Mongoose","ms-dos":"MS-DOS","mybatis":"MyBatis","mysql":"MySQL","naive ui":"Naive UI","naiveui":"NaiveUI","neo4j":"Neo4j","nestjs":"NestJS","netbeans":"NetBeans","netbios":"NetBIOS","nextjs":"Next.js","nixos":"NixOS","nocodb":"NocoDB","node.js":"Node.js","nosql":"NoSQL","notepad ++":"Notepad++","npm":"npm","numpy":"NumPy","nuxtjs":"NuxtJS","oauth":"OAuth","obs":"OBS","ocaml":"OCaml","onedrive":"OneDrive","onenote":"OneNote","openai":"OpenAI","openapi":"OpenAPI","opencv":"OpenCV","openfaas":"OpenFaaS","openflow":"OpenFlow","opengauss":"openGauss","opengl":"OpenGL","opengl es":"OpenGL ES","openjdk":"OpenJDK","openlayers":"OpenLayers","openpgp":"OpenPGP","opensea":"OpenSea","openssl":"OpenSSL","openstack":"OpenStack","openstreetmap":"OpenStreetMap","opensuse":"openSUSE","openvino":"OpenVINO","openwrt":"OpenWrt","opnsense":"OPNsense","pagp":"PAgP","paypal":"PayPal","photoshop":"Photoshop","php":"PHP","phpstorm":"PhpStorm","pihole":"Pi-hole","planetscale":"PlanetScale","postcss":"PostCSS","postgis":"PostGIS","postgresql":"PostgreSQL","potplayer":"PotPlayer","powerpoint":"PowerPoint","powershell":"PowerShell","premid":"PreMiD","primevue":"PrimeVue","protobuf":"Protobuf","pycharm":"PyCharm","pytorch":"PyTorch","qtscript":"QtScript","raii":"RAII","react native":"React Native","redhat":"RedHat","redisearch":"RediSearch","redisjson":"RedisJSON","rescript":"ReScript","restful":"RESTful","rethinkdb":"RethinkDB","rsshub":"RSSHub","rust":"Rust","rxdb":"RxDB","rxjs":"RxJS","samsung pay":"Samsung Pay","sass":"Sass","scss":"SCSS","segmentfault":"SegmentFault","socket.io":"Socket.IO","solarwinds":"SolarWinds","spatiallite":"SpatialLite","spir-v":"SPIR-V","springboot":"SpringBoot","springcloud":"SpringCloud","springmvc":"SpringMVC","sqlite":"SQLite","sqlserver":"SQLServer","storybook":"Storybook","stylus":"Stylus","sublime text":"Sublime Text","surrealdb":"SurrealDB","sveltekit":"SvelteKit","tailwind css":"Tailwind CSS","tailwindcss":"TailwindCSS","teamviewer":"TeamViewer","tensorflow":"TensorFlow","testflight":"TestFlight","tex":"TeX","threejs":"ThreeJS","tianocore":"TianoCore","tidb":"TiDB","tiflash":"TiFlash","tiktok":"TikTok","tikv":"TiKV","travis ci":"Travis CI","trpc":"tRPC","tsconfig":"TSConfig","tsdoc":"TSDoc","tsdx":"TSdx","turbopack":"Turbopack","turborepo":"Turborepo","typeorm":"TypeORM","typescript":"TypeScript","uniapp":"uniapp","unifi":"UniFi","unix":"UNIX","unocss":"UnoCSS","upnp":"UPnP","vercel":"Vercel","videolan":"VideoLAN","vim":"Vim","virtualbox":"VirtualBox","visual studio":"Visual Studio","visual studio code":"Visual Studio Code","vitepress":"VitePress","vividcortex":"VividCortex","vlc":"VLC","vmware":"VMware","voip":"VoIP","vs code":"VS Code","vs codium":"VSCodium","vscode":"VS Code","vscodium":"VSCodium","vue cli":"Vue CLI","vuepress":"VuePress","vueuse":"VueUse","vulkan":"Vulkan","w3c":"W3C","wasm":"Wasm","watchos":"watchOS","web assembly":"WebAssembly","webar":"WebAR","webassembly":"WebAssembly","webgl":"WebGL","webgpu":"WebGPU","webkit":"WebKit","webpack":"webpack","webrtc":"WebRTC","websocket":"WebSocket","webstorm":"WebStorm","webvr":"WebVR","webxr":"WebXR","wechat":"WeChat","wechat pay":"WeChat Pay","whatsapp":"WhatsApp","windi css":"Windi CSS","windicss":"WindiCSS","wireguard":"WireGuard","wordpress":"WordPress","xmind":"XMind","xstate":"XState","yapi":"YApi"}');
|
|
2762
2607
|
const dict = [
|
|
2763
2608
|
...Object.values(abbreviates_namespaceObject),
|
|
2764
2609
|
...Object.values(brands_namespaceObject),
|
|
@@ -2816,11 +2661,13 @@ const dict = [
|
|
|
2816
2661
|
'Server Action',
|
|
2817
2662
|
'Service Worker',
|
|
2818
2663
|
'TanStack Router',
|
|
2664
|
+
'TanStack Start',
|
|
2819
2665
|
'Vite',
|
|
2820
2666
|
'Vitest',
|
|
2821
2667
|
'Vue',
|
|
2822
2668
|
'Web Workers',
|
|
2823
2669
|
'Xcode',
|
|
2670
|
+
'Yarn',
|
|
2824
2671
|
'Zeabur',
|
|
2825
2672
|
'Zephyr',
|
|
2826
2673
|
'Zephyr Cloud'
|
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heading-case",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"repository":
|
|
3
|
+
"version": "1.1.4",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/rstackjs/heading-case"
|
|
7
|
+
},
|
|
5
8
|
"license": "MIT",
|
|
6
9
|
"type": "module",
|
|
7
10
|
"exports": {
|
|
@@ -13,7 +16,6 @@
|
|
|
13
16
|
"bin": {
|
|
14
17
|
"heading-case": "./bin.js"
|
|
15
18
|
},
|
|
16
|
-
"module": "./dist/index.mjs",
|
|
17
19
|
"types": "./dist/index.d.ts",
|
|
18
20
|
"files": [
|
|
19
21
|
"dist"
|
|
@@ -22,18 +24,18 @@
|
|
|
22
24
|
"pre-commit": "pnpm run lint:write"
|
|
23
25
|
},
|
|
24
26
|
"devDependencies": {
|
|
25
|
-
"@rslib/core": "^0.
|
|
26
|
-
"@rslint/core": "^0.5
|
|
27
|
-
"@rstest/core": "^0.
|
|
28
|
-
"@types/node": "^24.
|
|
27
|
+
"@rslib/core": "^0.23.2",
|
|
28
|
+
"@rslint/core": "^0.6.5",
|
|
29
|
+
"@rstest/core": "^0.11.1",
|
|
30
|
+
"@types/node": "^24.13.3",
|
|
29
31
|
"case-police": "^2.2.1",
|
|
30
32
|
"pathe": "^2.0.3",
|
|
31
33
|
"picocolors": "^1.1.1",
|
|
32
|
-
"prettier": "^3.
|
|
33
|
-
"rslog": "^2.
|
|
34
|
+
"prettier": "^3.9.5",
|
|
35
|
+
"rslog": "^2.2.0",
|
|
34
36
|
"simple-git-hooks": "^2.13.1",
|
|
35
|
-
"tinyglobby": "^0.2.
|
|
36
|
-
"typescript": "^
|
|
37
|
+
"tinyglobby": "^0.2.17",
|
|
38
|
+
"typescript": "^7.0.2"
|
|
37
39
|
},
|
|
38
40
|
"publishConfig": {
|
|
39
41
|
"access": "public",
|