@hypernym/colors 1.0.3 → 1.0.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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- <h1 align="center">Colors</h1>
1
+ <h1 align="center">@hypernym/colors</h1>
2
2
 
3
3
  <p align="center">Ultra lightweight color utilities for console.</p>
4
4
 
package/dist/index.d.mts CHANGED
@@ -26,4 +26,5 @@ declare const bgWhite: Color;
26
26
  declare const gray: Color;
27
27
  declare const bgGray: Color;
28
28
 
29
- export { type Color, 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 };
29
+ 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 type { Color };
package/package.json CHANGED
@@ -1,10 +1,13 @@
1
1
  {
2
2
  "name": "@hypernym/colors",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "author": "Hypernym Studio",
5
5
  "description": "Ultra lightweight color utilities for console.",
6
6
  "license": "MIT",
7
- "repository": "hypernym-studio/colors",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/hypernym-studio/colors.git"
10
+ },
8
11
  "homepage": "https://github.com/hypernym-studio/colors",
9
12
  "funding": "https://github.com/sponsors/ivodolenc",
10
13
  "type": "module",
@@ -35,11 +38,6 @@
35
38
  "format": "prettier --write .",
36
39
  "prepublishOnly": "pnpm build"
37
40
  },
38
- "packageManager": "pnpm@10.5.0",
39
- "engines": {
40
- "node": ">=20.0.0",
41
- "pnpm": ">=9.0.0"
42
- },
43
41
  "peerDependencies": {
44
42
  "@types/node": ">=20.0.0",
45
43
  "typescript": ">=5.0.0"
@@ -54,12 +52,12 @@
54
52
  },
55
53
  "devDependencies": {
56
54
  "@hypernym/bundler": "^0.14.3",
57
- "@hypernym/eslint-config": "^3.5.7",
58
- "@hypernym/prettier-config": "^3.2.3",
59
- "@hypernym/tsconfig": "^2.6.0",
60
- "@types/node": "^22.13.5",
61
- "eslint": "^9.21.0",
62
- "prettier": "^3.5.2",
63
- "typescript": "^5.7.3"
55
+ "@hypernym/eslint-config": "^3.6.1",
56
+ "@hypernym/prettier-config": "^3.2.4",
57
+ "@hypernym/tsconfig": "^2.6.1",
58
+ "@types/node": "^22.15.17",
59
+ "eslint": "^9.26.0",
60
+ "prettier": "^3.5.3",
61
+ "typescript": "^5.8.3"
64
62
  }
65
63
  }