@hypernym/colors 1.0.4 → 1.0.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.
Files changed (3) hide show
  1. package/LICENSE.txt +2 -1
  2. package/README.md +2 -6
  3. package/package.json +15 -16
package/LICENSE.txt CHANGED
@@ -1,6 +1,7 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Ivo Dolenc, Hypernym Studio
3
+ Copyright (c) 2025, Ivo Dolenc <https://github.com/ivodolenc>
4
+ Copyright (c) 2025, Hypernym Studio <https://github.com/hypernym-studio>
4
5
 
5
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
7
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -29,16 +29,12 @@
29
29
  ## Usage
30
30
 
31
31
  ```ts
32
- import { bold, green, cyan } from '@hypernym/colors'
32
+ import { bold, green, cyan, ... } from '@hypernym/colors'
33
33
 
34
34
  console.log(bold(green('hypernym')), cyan('colors'))
35
35
  ```
36
36
 
37
- ## Community
38
-
39
- Feel free to ask questions or share new ideas.
40
-
41
- Use the official [discussions](https://github.com/hypernym-studio/colors/discussions) to get involved.
37
+ See a list of all available [colors](./src/index.ts).
42
38
 
43
39
  ## License
44
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hypernym/colors",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "author": "Hypernym Studio",
5
5
  "description": "Ultra lightweight color utilities for console.",
6
6
  "license": "MIT",
@@ -31,13 +31,6 @@
31
31
  "log",
32
32
  "esm"
33
33
  ],
34
- "scripts": {
35
- "build": "hyperbundler",
36
- "lint": "eslint .",
37
- "lint:fix": "eslint --fix .",
38
- "format": "prettier --write .",
39
- "prepublishOnly": "pnpm build"
40
- },
41
34
  "peerDependencies": {
42
35
  "@types/node": ">=20.0.0",
43
36
  "typescript": ">=5.0.0"
@@ -51,13 +44,19 @@
51
44
  }
52
45
  },
53
46
  "devDependencies": {
54
- "@hypernym/bundler": "^0.14.3",
55
- "@hypernym/eslint-config": "^3.6.1",
56
- "@hypernym/prettier-config": "^3.2.4",
47
+ "@hypernym/bundler": "^0.14.4",
48
+ "@hypernym/eslint-config": "^3.6.3",
49
+ "@hypernym/prettier-config": "^3.2.6",
57
50
  "@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"
51
+ "@types/node": "^22.17.2",
52
+ "eslint": "^9.33.0",
53
+ "prettier": "^3.6.2",
54
+ "typescript": "^5.9.2"
55
+ },
56
+ "scripts": {
57
+ "build": "hyperbundler",
58
+ "lint": "eslint .",
59
+ "lint:fix": "eslint --fix .",
60
+ "format": "prettier --write ."
62
61
  }
63
- }
62
+ }