@visulima/is-ansi-color-supported 3.0.0 → 3.0.1
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 +2 -0
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
## @visulima/is-ansi-color-supported [3.0.1](https://github.com/visulima/visulima/compare/%40visulima%2Fis-ansi-color-supported%403.0.0...%40visulima%2Fis-ansi-color-supported%403.0.1) (2026-07-26)
|
|
2
|
+
|
|
1
3
|
## @visulima/is-ansi-color-supported [3.0.0](https://github.com/visulima/visulima/compare/@visulima/is-ansi-color-supported@2.3.5...@visulima/is-ansi-color-supported@3.0.0) (2026-07-03)
|
|
2
4
|
|
|
3
5
|
### ⚠ BREAKING CHANGES
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/is-ansi-color-supported",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Detect whether a terminal or browser supports ansi colors.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"256",
|
|
@@ -34,6 +34,11 @@
|
|
|
34
34
|
],
|
|
35
35
|
"homepage": "https://visulima.com/packages/is-ansi-color-supported/",
|
|
36
36
|
"bugs": "https://github.com/visulima/visulima/issues",
|
|
37
|
+
"license": "MIT",
|
|
38
|
+
"author": {
|
|
39
|
+
"name": "Daniel Bannert",
|
|
40
|
+
"email": "d.bannert@anolilab.de"
|
|
41
|
+
},
|
|
37
42
|
"repository": {
|
|
38
43
|
"type": "git",
|
|
39
44
|
"url": "git+https://github.com/visulima/visulima.git",
|
|
@@ -49,13 +54,32 @@
|
|
|
49
54
|
"url": "https://anolilab.com/support"
|
|
50
55
|
}
|
|
51
56
|
],
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
57
|
+
"files": [
|
|
58
|
+
"dist/**",
|
|
59
|
+
"README.md",
|
|
60
|
+
"CHANGELOG.md",
|
|
61
|
+
"LICENSE.md"
|
|
62
|
+
],
|
|
58
63
|
"type": "module",
|
|
64
|
+
"sideEffects": false,
|
|
65
|
+
"module": "dist/is-color-supported.server.js",
|
|
66
|
+
"browser": "dist/is-color-supported.browser.js",
|
|
67
|
+
"types": "dist/is-color-supported.server.d.ts",
|
|
68
|
+
"typesVersions": {
|
|
69
|
+
">=5.0": {
|
|
70
|
+
".": [
|
|
71
|
+
"./dist/is-color-supported.edge-light.d.ts",
|
|
72
|
+
"./dist/is-color-supported.browser.d.ts",
|
|
73
|
+
"./dist/is-color-supported.server.d.ts"
|
|
74
|
+
],
|
|
75
|
+
"edge-light": [
|
|
76
|
+
"./dist/is-color-supported.edge-light.d.ts"
|
|
77
|
+
],
|
|
78
|
+
"browser": [
|
|
79
|
+
"./dist/is-color-supported.browser.d.ts"
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
},
|
|
59
83
|
"exports": {
|
|
60
84
|
".": {
|
|
61
85
|
"edge-light": {
|
|
@@ -81,35 +105,11 @@
|
|
|
81
105
|
},
|
|
82
106
|
"./package.json": "./package.json"
|
|
83
107
|
},
|
|
84
|
-
"module": "dist/is-color-supported.server.js",
|
|
85
|
-
"browser": "dist/is-color-supported.browser.js",
|
|
86
|
-
"types": "dist/is-color-supported.server.d.ts",
|
|
87
|
-
"typesVersions": {
|
|
88
|
-
">=5.0": {
|
|
89
|
-
".": [
|
|
90
|
-
"./dist/is-color-supported.edge-light.d.ts",
|
|
91
|
-
"./dist/is-color-supported.browser.d.ts",
|
|
92
|
-
"./dist/is-color-supported.server.d.ts"
|
|
93
|
-
],
|
|
94
|
-
"edge-light": [
|
|
95
|
-
"./dist/is-color-supported.edge-light.d.ts"
|
|
96
|
-
],
|
|
97
|
-
"browser": [
|
|
98
|
-
"./dist/is-color-supported.browser.d.ts"
|
|
99
|
-
]
|
|
100
|
-
}
|
|
101
|
-
},
|
|
102
|
-
"files": [
|
|
103
|
-
"dist/**",
|
|
104
|
-
"README.md",
|
|
105
|
-
"CHANGELOG.md",
|
|
106
|
-
"LICENSE.md"
|
|
107
|
-
],
|
|
108
|
-
"engines": {
|
|
109
|
-
"node": "^22.14.0 || >=24.10.0"
|
|
110
|
-
},
|
|
111
108
|
"publishConfig": {
|
|
112
109
|
"access": "public",
|
|
113
110
|
"provenance": true
|
|
111
|
+
},
|
|
112
|
+
"engines": {
|
|
113
|
+
"node": "^22.14.0 || >=24.10.0"
|
|
114
114
|
}
|
|
115
115
|
}
|