@visulima/ansi 1.0.15 → 1.0.16

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 (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +1 -67
package/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## @visulima/ansi [1.0.16](https://github.com/visulima/visulima/compare/@visulima/ansi@1.0.15...@visulima/ansi@1.0.16) (2025-01-22)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * updated all dev dependencies and all dependencies in the app folder ([87f4ccb](https://github.com/visulima/visulima/commit/87f4ccbf9f7900ec5b56f3c1477bc4a0ef571bcf))
6
+
7
+
8
+ ### Dependencies
9
+
10
+ * **@visulima/colorize:** upgraded to 1.4.19
11
+
1
12
  ## @visulima/ansi [1.0.15](https://github.com/visulima/visulima/compare/@visulima/ansi@1.0.14...@visulima/ansi@1.0.15) (2025-01-13)
2
13
 
3
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/ansi",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "ANSI escape codes for some terminal swag.",
5
5
  "keywords": [
6
6
  "alternative-screen",
@@ -197,77 +197,11 @@
197
197
  "README.md",
198
198
  "CHANGELOG.md"
199
199
  ],
200
- "devDependencies": {
201
- "@anolilab/eslint-config": "^15.0.3",
202
- "@anolilab/prettier-config": "^5.0.14",
203
- "@anolilab/semantic-release-pnpm": "1.1.6",
204
- "@anolilab/semantic-release-preset": "^9.0.3",
205
- "@arethetypeswrong/cli": "^0.17.2",
206
- "@babel/core": "^7.26.0",
207
- "@rushstack/eslint-plugin-security": "^0.8.3",
208
- "@secretlint/secretlint-rule-preset-recommend": "^9.0.0",
209
- "@total-typescript/ts-reset": "^0.6.1",
210
- "@types/node": "22.10.5",
211
- "@visulima/colorize": "1.4.18",
212
- "@visulima/packem": "1.10.7",
213
- "@visulima/path": "1.3.3",
214
- "@vitest/coverage-v8": "^2.1.8",
215
- "@vitest/ui": "^2.1.8",
216
- "ansi-regex": "^6.1.0",
217
- "conventional-changelog-conventionalcommits": "8.0.0",
218
- "cross-env": "^7.0.3",
219
- "esbuild": "0.24.2",
220
- "eslint": "9.18.0",
221
- "eslint-plugin-deprecation": "^3.0.0",
222
- "eslint-plugin-etc": "^2.0.3",
223
- "eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
224
- "eslint-plugin-mdx": "^3.1.5",
225
- "eslint-plugin-vitest": "^0.5.4",
226
- "eslint-plugin-vitest-globals": "^1.5.0",
227
- "prettier": "^3.4.2",
228
- "restore-cursor": "^5.1.0",
229
- "rimraf": "6.0.1",
230
- "secretlint": "9.0.0",
231
- "semantic-release": "^24.2.1",
232
- "type-fest": "^4.32.0",
233
- "typescript": "5.7.3",
234
- "vitest": "^2.1.8"
235
- },
236
200
  "engines": {
237
201
  "node": ">=18.* <=23.*"
238
202
  },
239
203
  "publishConfig": {
240
204
  "access": "public",
241
205
  "provenance": true
242
- },
243
- "anolilab": {
244
- "eslint-config": {
245
- "plugin": {
246
- "tsdoc": false,
247
- "etc": false
248
- },
249
- "warn_on_unsupported_typescript_version": false,
250
- "info_on_disabling_jsx_react_rule": false,
251
- "info_on_disabling_prettier_conflict_rule": false,
252
- "info_on_disabling_jsonc_sort_keys_rule": false,
253
- "info_on_disabling_etc_no_deprecated": false
254
- }
255
- },
256
- "scripts": {
257
- "build": "cross-env NODE_ENV=development packem build",
258
- "build:prod": "cross-env NODE_ENV=production packem build",
259
- "clean": "rimraf node_modules dist .eslintcache",
260
- "dev": "pnpm run build --watch",
261
- "lint:attw": "attw --pack",
262
- "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
263
- "lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix",
264
- "lint:package-json": "publint --strict",
265
- "lint:prettier": "prettier --config=.prettierrc.cjs --check .",
266
- "lint:prettier:fix": "prettier --config=.prettierrc.cjs --write .",
267
- "lint:types": "tsc --noEmit",
268
- "test": "vitest run",
269
- "test:coverage": "vitest run --coverage",
270
- "test:ui": "vitest --ui --coverage.enabled=true",
271
- "test:watch": "vitest"
272
206
  }
273
207
  }