@hypernym/colors 1.0.6 → 1.0.8

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/LICENSE.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025, Ivo Dolenc <https://github.com/ivodolenc>
4
- Copyright (c) 2025, Hypernym Studio <https://github.com/hypernym-studio>
3
+ Copyright (c) 2026, Ivo Dolenc <https://github.com/ivodolenc>
4
+ Copyright (c) 2026, Hypernym Studio <https://github.com/hypernym-studio>
5
5
 
6
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
7
7
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -4,11 +4,11 @@
4
4
 
5
5
  <p align="center">
6
6
  <a href="https://github.com/hypernym-studio/colors">Repository</a>
7
- <span>✦</span>
7
+ <span>|</span>
8
8
  <a href="https://www.npmjs.com/package/@hypernym/colors">Package</a>
9
- <span>✦</span>
9
+ <span>|</span>
10
10
  <a href="https://github.com/hypernym-studio/colors/releases">Releases</a>
11
- <span>✦</span>
11
+ <span>|</span>
12
12
  <a href="https://github.com/hypernym-studio/colors/discussions">Discussions</a>
13
13
  </p>
14
14
 
package/dist/index.js CHANGED
@@ -26,6 +26,5 @@ const white = (v) => `${_}37m${v}${_}39m`;
26
26
  const bgWhite = (v) => `${_}47m${v}${_}49m`;
27
27
  const gray = (v) => `${_}90m${v}${_}39m`;
28
28
  const bgGray = (v) => `${_}100m${v}${_}49m`;
29
-
30
29
  //#endregion
31
- export { bgBlack, bgBlue, bgCyan, bgGray, bgGreen, bgMagenta, bgRed, bgWhite, bgYellow, black, blue, bold, crossout, cyan, dim, gray, green, hidden, inverse, italic, magenta, red, reset, underline, white, yellow };
30
+ export { bgBlack, bgBlue, bgCyan, bgGray, bgGreen, bgMagenta, bgRed, bgWhite, bgYellow, black, blue, bold, crossout, cyan, dim, gray, green, hidden, inverse, italic, magenta, red, reset, underline, white, yellow };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hypernym/colors",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "author": "Hypernym Studio",
5
5
  "description": "Ultra lightweight color utilities for console.",
6
6
  "license": "MIT",
@@ -21,6 +21,8 @@
21
21
  "dist"
22
22
  ],
23
23
  "keywords": [
24
+ "hyper",
25
+ "hypernym",
24
26
  "cli",
25
27
  "node",
26
28
  "ansi",
@@ -44,19 +46,19 @@
44
46
  }
45
47
  },
46
48
  "devDependencies": {
47
- "@hypernym/bundler": "^0.30.4",
48
- "@hypernym/eslint-config": "^3.6.5",
49
- "@hypernym/prettier-config": "^3.2.9",
50
- "@hypernym/tsconfig": "^2.6.3",
51
- "@types/node": "^24.8.1",
52
- "eslint": "^9.37.0",
53
- "prettier": "^3.6.2",
49
+ "@hypernym/bundler": "^0.32.2",
50
+ "@hypernym/changelog": "^0.3.0",
51
+ "@hypernym/oxlint-config": "^0.1.0",
52
+ "@hypernym/tsconfig": "^2.7.0",
53
+ "@types/node": "^25.5.1",
54
+ "oxfmt": "^0.43.0",
55
+ "oxlint": "^1.58.0",
54
56
  "typescript": "^5.9.3"
55
57
  },
56
58
  "scripts": {
57
59
  "build": "hyperbundler",
58
- "lint": "eslint .",
59
- "lint:fix": "eslint --fix .",
60
- "format": "prettier --write ."
60
+ "lint": "oxlint",
61
+ "format": "oxfmt",
62
+ "generate:changelog": "hyperchangelog"
61
63
  }
62
64
  }