@visulima/is-ansi-color-supported 2.2.3 → 2.2.5
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 +17 -0
- package/dist/is-color-supported.browser.cjs +1 -0
- package/dist/is-color-supported.browser.d.cts +7 -0
- package/dist/is-color-supported.browser.d.mts +7 -0
- package/dist/is-color-supported.browser.d.ts +7 -0
- package/dist/is-color-supported.browser.mjs +1 -1
- package/dist/is-color-supported.server.cjs +1 -1
- package/dist/is-color-supported.server.d.cts +3 -7
- package/dist/is-color-supported.server.d.mts +3 -7
- package/dist/is-color-supported.server.d.ts +3 -7
- package/dist/is-color-supported.server.mjs +1 -1
- package/dist/shared/SPACE_MONO-BEQbKWNs.mjs +1 -0
- package/dist/shared/SPACE_MONO-D73nMay-.cjs +1 -0
- package/dist/shared/color-spaces-DeN59JDX.d.cts +8 -0
- package/dist/shared/color-spaces-DeN59JDX.d.mjs +8 -0
- package/dist/shared/color-spaces-DeN59JDX.d.mts +8 -0
- package/package.json +16 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## @visulima/is-ansi-color-supported [2.2.5](https://github.com/visulima/visulima/compare/@visulima/is-ansi-color-supported@2.2.4...@visulima/is-ansi-color-supported@2.2.5) (2024-09-07)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* fixed broken chunk splitting from packem ([1aaf277](https://github.com/visulima/visulima/commit/1aaf27779292d637923c5f8a220e18606e78caa2))
|
|
6
|
+
|
|
7
|
+
## @visulima/is-ansi-color-supported [2.2.4](https://github.com/visulima/visulima/compare/@visulima/is-ansi-color-supported@2.2.3...@visulima/is-ansi-color-supported@2.2.4) (2024-09-07)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* added types support for node10 ([604583f](https://github.com/visulima/visulima/commit/604583fa3c24b950fafad45d17e7a1333040fd76))
|
|
12
|
+
|
|
13
|
+
### Miscellaneous Chores
|
|
14
|
+
|
|
15
|
+
* update dev dependencies ([0738f98](https://github.com/visulima/visulima/commit/0738f9810478bb215ce4b2571dc8874c4c503089))
|
|
16
|
+
* updated dev dependencies ([45c2a76](https://github.com/visulima/visulima/commit/45c2a76bc974ecb2c6b172c3af03373d4cc6a5ce))
|
|
17
|
+
|
|
1
18
|
## @visulima/is-ansi-color-supported [2.2.3](https://github.com/visulima/visulima/compare/@visulima/is-ansi-color-supported@2.2.2...@visulima/is-ansi-color-supported@2.2.3) (2024-08-01)
|
|
2
19
|
|
|
3
20
|
### Bug Fixes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";var C=Object.defineProperty;var t=(e,o)=>C(e,"name",{value:o,configurable:!0});Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./shared/SPACE_MONO-D73nMay-.cjs");var O=Object.defineProperty,i=t((e,o)=>O(e,"name",{value:o,configurable:!0}),"e");const S=i(()=>(()=>{if(typeof navigator<"u"){if(navigator.userAgentData&&navigator.userAgentData.brands.find(({b:e})=>e==="Chromium")?.version>93)return r.SPACE_TRUE_COLORS;if(/\b(Chrome|Chromium)\//.test(navigator.userAgent))return r.SPACE_16_COLORS}return typeof process<"u"&&(process.env.NEXT_RUNTIME??"").includes("edge")?r.SPACE_16_COLORS:r.SPACE_MONO})(),"isColorSupported"),u=S,_=S;exports.SPACE_16_COLORS=r.SPACE_16_COLORS;exports.SPACE_256_COLORS=r.SPACE_256_COLORS;exports.SPACE_MONO=r.SPACE_MONO;exports.SPACE_TRUE_COLORS=r.SPACE_TRUE_COLORS;exports.isStderrColorSupported=_;exports.isStdoutColorSupported=u;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { C as ColorSupportLevel } from './shared/color-spaces-DeN59JDX.cjs';
|
|
2
|
+
export { S as SPACE_16_COLORS, a as SPACE_256_COLORS, b as SPACE_MONO, c as SPACE_TRUE_COLORS } from './shared/color-spaces-DeN59JDX.cjs';
|
|
3
|
+
|
|
4
|
+
declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
5
|
+
declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
6
|
+
|
|
7
|
+
export { ColorSupportLevel, isStderrColorSupported, isStdoutColorSupported };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { C as ColorSupportLevel } from './shared/color-spaces-DeN59JDX.mjs';
|
|
2
|
+
export { S as SPACE_16_COLORS, a as SPACE_256_COLORS, b as SPACE_MONO, c as SPACE_TRUE_COLORS } from './shared/color-spaces-DeN59JDX.mjs';
|
|
3
|
+
|
|
4
|
+
declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
5
|
+
declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
6
|
+
|
|
7
|
+
export { ColorSupportLevel, isStderrColorSupported, isStdoutColorSupported };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { C as ColorSupportLevel } from './shared/color-spaces-DeN59JDX.d.mjs';
|
|
2
|
+
export { S as SPACE_16_COLORS, a as SPACE_256_COLORS, b as SPACE_MONO, c as SPACE_TRUE_COLORS } from './shared/color-spaces-DeN59JDX.d.mjs';
|
|
3
|
+
|
|
4
|
+
declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
5
|
+
declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
6
|
+
|
|
7
|
+
export { ColorSupportLevel, isStderrColorSupported, isStdoutColorSupported };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var
|
|
1
|
+
var a=Object.defineProperty;var o=(r,e)=>a(r,"name",{value:e,configurable:!0});import{SPACE_TRUE_COLORS as u,SPACE_16_COLORS as t,SPACE_MONO as n}from"./shared/SPACE_MONO-BEQbKWNs.mjs";import{SPACE_256_COLORS as v}from"./shared/SPACE_MONO-BEQbKWNs.mjs";var s=Object.defineProperty,p=o((r,e)=>s(r,"name",{value:e,configurable:!0}),"e");const i=p(()=>(()=>{if(typeof navigator<"u"){if(navigator.userAgentData&&navigator.userAgentData.brands.find(({b:r})=>r==="Chromium")?.version>93)return u;if(/\b(Chrome|Chromium)\//.test(navigator.userAgent))return t}return typeof process<"u"?(process.env.NEXT_RUNTIME??"").includes("edge")?t:n:n})(),"isColorSupported"),d=i,f=i;export{t as SPACE_16_COLORS,v as SPACE_256_COLORS,n as SPACE_MONO,u as SPACE_TRUE_COLORS,f as isStderrColorSupported,d as isStdoutColorSupported};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var a=Object.defineProperty;var P=(S,t)=>a(S,"name",{value:t,configurable:!0});Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./shared/SPACE_MONO-D73nMay-.cjs");var p=Object.defineProperty,R=P((S,t)=>p(S,"name",{value:t,configurable:!0}),"f");const L=R(S=>{const t=globalThis,i=t.Deno!=null,C=t.process??t.Deno??{},A=C.argv??C.args??[],E=R(O=>{const T=A.indexOf("--"),c=A.findIndex(M=>O.test(M));return c!==-1&&(T===-1||c<T)},"oneOfFlags");let r={};try{r=i?C.env.toObject():C.env??{}}catch{}const l="FORCE_COLOR",d=l in r,_=r[l]?String(r[l]):void 0,u=Object.prototype.toString.call(_).slice(8,-1)==="String";let o;if(_==="true"?o=e.SPACE_16_COLORS:_==="false"?o=e.SPACE_MONO:u&&_.length===0?o=e.SPACE_16_COLORS:u&&_.length>0&&(o=Math.min(Number.parseInt(_,10),3)),_!=="true"&&_!=="false"&&o!==void 0&&o<4)return o;if("NO_COLOR"in r||d&&o===0||E(/^-{1,2}(no-color|no-colors|color=false|color=never)$/))return e.SPACE_MONO;if(E(/^-{1,2}(color=256)$/))return e.SPACE_256_COLORS;if(E(/^-{1,2}(color=16m|color=full|color=truecolor)$/))return e.SPACE_TRUE_COLORS;if(E(/^-{1,2}(color|colors|color=true|color=always)$/))return e.SPACE_16_COLORS;const s=o||e.SPACE_MONO;if("TF_BUILD"in r&&"AGENT_NAME"in r)return e.SPACE_16_COLORS;if(r.TERM&&/-mono|dumb/i.test(r.TERM))return s;if((i?t.Deno.build.os:C.platform)==="win32")try{const O=(i?t.Deno.osRelease():C.os.release()).split(".");return Number(O[0])>=10&&Number(O[2])>=10586?Number(O[2])>=14931?e.SPACE_TRUE_COLORS:e.SPACE_256_COLORS:e.SPACE_16_COLORS}catch{}if("CI"in r)return"GITHUB_ACTIONS"in r||"GITHUB_WORKFLOW"in r||"GITEA_ACTIONS"in r?e.SPACE_TRUE_COLORS:["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI","BUILDKITE","DRONE","GITLAB_CI"].some(O=>O in r)||r.CI_NAME==="codeship"?e.SPACE_16_COLORS:s;if(r.TERMINAL_EMULATOR?.includes("JediTerm"))return e.SPACE_TRUE_COLORS;if("TEAMCITY_VERSION"in r)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(r.TEAMCITY_VERSION)?e.SPACE_16_COLORS:e.SPACE_MONO;if(r.COLORTERM==="truecolor"||r.TERM==="xterm-kitty")return e.SPACE_TRUE_COLORS;if("TERM_PROGRAM"in r){const O=Number.parseInt((r.TERM_PROGRAM_VERSION??"").split(".")[0],10);if(r.TERM_PROGRAM==="iTerm.app")return O>=3?e.SPACE_TRUE_COLORS:e.SPACE_256_COLORS;if(r.TERM_PROGRAM==="Apple_Terminal")return e.SPACE_256_COLORS}if(/-256(color)?$/i.test(r.TERM))return e.SPACE_256_COLORS;let n=!1;return i?S==="out"?n=t.Deno.stdout.isTerminal():S==="err"&&(n=t.Deno.stderr.isTerminal()):"PM2_HOME"in r&&"pm_id"in r?n=!0:n=C["std"+S]&&"isTTY"in C["std"+S],n&&/^screen|^tmux|^xterm|^vt[1-5]\d\d|^ansi|color|mintty|rxvt|cygwin|linux/i.test(r.TERM)||"COLORTERM"in r?e.SPACE_16_COLORS:s},"isColorSupportedFactory"),f=R(()=>L("out"),"isStdoutColorSupported"),I=R(()=>L("err"),"isStderrColorSupported");exports.SPACE_16_COLORS=e.SPACE_16_COLORS;exports.SPACE_256_COLORS=e.SPACE_256_COLORS;exports.SPACE_MONO=e.SPACE_MONO;exports.SPACE_TRUE_COLORS=e.SPACE_TRUE_COLORS;exports.isStderrColorSupported=I;exports.isStdoutColorSupported=f;
|
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
declare const SPACE_MONO = 0;
|
|
4
|
-
declare const SPACE_16_COLORS = 1;
|
|
5
|
-
declare const SPACE_256_COLORS = 2;
|
|
6
|
-
declare const SPACE_TRUE_COLORS = 3;
|
|
1
|
+
import { C as ColorSupportLevel } from './shared/color-spaces-DeN59JDX.cjs';
|
|
2
|
+
export { S as SPACE_16_COLORS, a as SPACE_256_COLORS, b as SPACE_MONO, c as SPACE_TRUE_COLORS } from './shared/color-spaces-DeN59JDX.cjs';
|
|
7
3
|
|
|
8
4
|
declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
9
5
|
declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
10
6
|
|
|
11
|
-
export {
|
|
7
|
+
export { ColorSupportLevel, isStderrColorSupported, isStdoutColorSupported };
|
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
declare const SPACE_MONO = 0;
|
|
4
|
-
declare const SPACE_16_COLORS = 1;
|
|
5
|
-
declare const SPACE_256_COLORS = 2;
|
|
6
|
-
declare const SPACE_TRUE_COLORS = 3;
|
|
1
|
+
import { C as ColorSupportLevel } from './shared/color-spaces-DeN59JDX.mjs';
|
|
2
|
+
export { S as SPACE_16_COLORS, a as SPACE_256_COLORS, b as SPACE_MONO, c as SPACE_TRUE_COLORS } from './shared/color-spaces-DeN59JDX.mjs';
|
|
7
3
|
|
|
8
4
|
declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
9
5
|
declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
10
6
|
|
|
11
|
-
export {
|
|
7
|
+
export { ColorSupportLevel, isStderrColorSupported, isStdoutColorSupported };
|
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
declare const SPACE_MONO = 0;
|
|
4
|
-
declare const SPACE_16_COLORS = 1;
|
|
5
|
-
declare const SPACE_256_COLORS = 2;
|
|
6
|
-
declare const SPACE_TRUE_COLORS = 3;
|
|
1
|
+
import { C as ColorSupportLevel } from './shared/color-spaces-DeN59JDX.d.mjs';
|
|
2
|
+
export { S as SPACE_16_COLORS, a as SPACE_256_COLORS, b as SPACE_MONO, c as SPACE_TRUE_COLORS } from './shared/color-spaces-DeN59JDX.d.mjs';
|
|
7
3
|
|
|
8
4
|
declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
9
5
|
declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
10
6
|
|
|
11
|
-
export {
|
|
7
|
+
export { ColorSupportLevel, isStderrColorSupported, isStdoutColorSupported };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var
|
|
1
|
+
var N=Object.defineProperty;var S=(i,e)=>N(i,"name",{value:e,configurable:!0});import{SPACE_16_COLORS as n,SPACE_MONO as E,SPACE_256_COLORS as R,SPACE_TRUE_COLORS as u}from"./shared/SPACE_MONO-BEQbKWNs.mjs";var L=Object.defineProperty,d=S((i,e)=>L(i,"name",{value:e,configurable:!0}),"f");const m=d(i=>{const e=globalThis,O=e.Deno!=null,l=e.process??e.Deno??{},C=l.argv??l.args??[],T=d(o=>{const p=C.indexOf("--"),I=C.findIndex(A=>o.test(A));return I!==-1&&(p===-1||I<p)},"oneOfFlags");let r={};try{r=O?l.env.toObject():l.env??{}}catch{}const a="FORCE_COLOR",M=a in r,s=r[a]?String(r[a]):void 0,_=Object.prototype.toString.call(s).slice(8,-1)==="String";let t;if(s==="true"?t=n:s==="false"?t=E:_&&s.length===0?t=n:_&&s.length>0&&(t=Math.min(Number.parseInt(s,10),3)),s!=="true"&&s!=="false"&&t!==void 0&&t<4)return t;if("NO_COLOR"in r||M&&t===0||T(/^-{1,2}(no-color|no-colors|color=false|color=never)$/))return E;if(T(/^-{1,2}(color=256)$/))return R;if(T(/^-{1,2}(color=16m|color=full|color=truecolor)$/))return u;if(T(/^-{1,2}(color|colors|color=true|color=always)$/))return n;const f=t||E;if("TF_BUILD"in r&&"AGENT_NAME"in r)return n;if(r.TERM&&/-mono|dumb/i.test(r.TERM))return f;if((O?e.Deno.build.os:l.platform)==="win32")try{const o=(O?e.Deno.osRelease():l.os.release()).split(".");return Number(o[0])>=10&&Number(o[2])>=10586?Number(o[2])>=14931?u:R:n}catch{}if("CI"in r)return"GITHUB_ACTIONS"in r||"GITHUB_WORKFLOW"in r||"GITEA_ACTIONS"in r?u:["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI","BUILDKITE","DRONE","GITLAB_CI"].some(o=>o in r)||r.CI_NAME==="codeship"?n:f;if(r.TERMINAL_EMULATOR?.includes("JediTerm"))return u;if("TEAMCITY_VERSION"in r)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(r.TEAMCITY_VERSION)?n:E;if(r.COLORTERM==="truecolor")return u;if(r.TERM==="xterm-kitty")return u;if("TERM_PROGRAM"in r){const o=Number.parseInt((r.TERM_PROGRAM_VERSION??"").split(".")[0],10);if(r.TERM_PROGRAM==="iTerm.app")return o>=3?u:R;if(r.TERM_PROGRAM==="Apple_Terminal")return R}if(/-256(color)?$/i.test(r.TERM))return R;let c=!1;return O?i==="out"?c=e.Deno.stdout.isTerminal():i==="err"&&(c=e.Deno.stderr.isTerminal()):"PM2_HOME"in r&&"pm_id"in r?c=!0:c=l["std"+i]&&"isTTY"in l["std"+i],c&&/^screen|^tmux|^xterm|^vt[1-5]\d\d|^ansi|color|mintty|rxvt|cygwin|linux/i.test(r.TERM)?n:"COLORTERM"in r?n:f},"isColorSupportedFactory"),g=d(()=>m("out"),"isStdoutColorSupported"),v=d(()=>m("err"),"isStderrColorSupported");export{n as SPACE_16_COLORS,R as SPACE_256_COLORS,E as SPACE_MONO,u as SPACE_TRUE_COLORS,v as isStderrColorSupported,g as isStdoutColorSupported};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const O=0,C=1,S=2,_=3;export{C as SPACE_16_COLORS,S as SPACE_256_COLORS,O as SPACE_MONO,_ as SPACE_TRUE_COLORS};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const O=0,S=1,C=2,_=3;exports.SPACE_16_COLORS=S;exports.SPACE_256_COLORS=C;exports.SPACE_MONO=O;exports.SPACE_TRUE_COLORS=_;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type ColorSupportLevel = 0 | 1 | 2 | 3;
|
|
2
|
+
|
|
3
|
+
declare const SPACE_MONO = 0;
|
|
4
|
+
declare const SPACE_16_COLORS = 1;
|
|
5
|
+
declare const SPACE_256_COLORS = 2;
|
|
6
|
+
declare const SPACE_TRUE_COLORS = 3;
|
|
7
|
+
|
|
8
|
+
export { type ColorSupportLevel as C, SPACE_16_COLORS as S, SPACE_256_COLORS as a, SPACE_MONO as b, SPACE_TRUE_COLORS as c };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type ColorSupportLevel = 0 | 1 | 2 | 3;
|
|
2
|
+
|
|
3
|
+
declare const SPACE_MONO = 0;
|
|
4
|
+
declare const SPACE_16_COLORS = 1;
|
|
5
|
+
declare const SPACE_256_COLORS = 2;
|
|
6
|
+
declare const SPACE_TRUE_COLORS = 3;
|
|
7
|
+
|
|
8
|
+
export { type ColorSupportLevel as C, SPACE_16_COLORS as S, SPACE_256_COLORS as a, SPACE_MONO as b, SPACE_TRUE_COLORS as c };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type ColorSupportLevel = 0 | 1 | 2 | 3;
|
|
2
|
+
|
|
3
|
+
declare const SPACE_MONO = 0;
|
|
4
|
+
declare const SPACE_16_COLORS = 1;
|
|
5
|
+
declare const SPACE_256_COLORS = 2;
|
|
6
|
+
declare const SPACE_TRUE_COLORS = 3;
|
|
7
|
+
|
|
8
|
+
export { type ColorSupportLevel as C, SPACE_16_COLORS as S, SPACE_256_COLORS as a, SPACE_MONO as b, SPACE_TRUE_COLORS as c };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/is-ansi-color-supported",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.5",
|
|
4
4
|
"description": "Detect whether a terminal or browser supports ansi colors.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -33,9 +33,12 @@
|
|
|
33
33
|
"command-line"
|
|
34
34
|
],
|
|
35
35
|
"homepage": "https://www.visulima.com/docs/package/is-ansi-color-supported",
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/visulima/visulima/issues"
|
|
38
|
+
},
|
|
36
39
|
"repository": {
|
|
37
40
|
"type": "git",
|
|
38
|
-
"url": "https://github.com/visulima/visulima.git",
|
|
41
|
+
"url": "git+https://github.com/visulima/visulima.git",
|
|
39
42
|
"directory": "packages/is-ansi-color-supported"
|
|
40
43
|
},
|
|
41
44
|
"funding": [
|
|
@@ -73,6 +76,14 @@
|
|
|
73
76
|
"module": "dist/is-color-supported.server.mjs",
|
|
74
77
|
"browser": "./dist/is-color-supported.browser.mjs",
|
|
75
78
|
"types": "dist/is-color-supported.server.d.ts",
|
|
79
|
+
"typesVersions": {
|
|
80
|
+
"*": {
|
|
81
|
+
"*": [
|
|
82
|
+
"./dist/is-color-supported.browser.d.ts",
|
|
83
|
+
"./dist/is-color-supported.server.d.ts"
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
},
|
|
76
87
|
"files": [
|
|
77
88
|
"dist/**",
|
|
78
89
|
"README.md",
|
|
@@ -84,11 +95,12 @@
|
|
|
84
95
|
"@anolilab/prettier-config": "^5.0.14",
|
|
85
96
|
"@anolilab/semantic-release-pnpm": "^1.1.3",
|
|
86
97
|
"@anolilab/semantic-release-preset": "^9.0.0",
|
|
98
|
+
"@arethetypeswrong/cli": "^0.15.4",
|
|
87
99
|
"@babel/core": "^7.25.2",
|
|
88
100
|
"@rushstack/eslint-plugin-security": "^0.8.2",
|
|
89
101
|
"@secretlint/secretlint-rule-preset-recommend": "^8.2.4",
|
|
90
102
|
"@types/node": "18.19.15",
|
|
91
|
-
"@visulima/packem": "^1.0.0-alpha.
|
|
103
|
+
"@visulima/packem": "^1.0.0-alpha.95",
|
|
92
104
|
"@vitest/coverage-v8": "^2.0.5",
|
|
93
105
|
"@vitest/ui": "^2.0.5",
|
|
94
106
|
"conventional-changelog-conventionalcommits": "8.0.0",
|
|
@@ -137,6 +149,7 @@
|
|
|
137
149
|
"build:prod": "cross-env NODE_ENV=production packem build",
|
|
138
150
|
"clean": "rimraf node_modules dist .eslintcache",
|
|
139
151
|
"dev": "pnpm run build --watch",
|
|
152
|
+
"lint:attw": "attw --pack",
|
|
140
153
|
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
|
|
141
154
|
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix",
|
|
142
155
|
"lint:package-json": "publint --strict",
|