color-bits 1.0.0 → 1.0.2
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 +3 -1
- package/package.json +8 -4
package/README.md
CHANGED
|
@@ -76,7 +76,9 @@ const output = Color.alpha(backround, 0.5) // #RRGGBBAA string
|
|
|
76
76
|
|
|
77
77
|
### 📜 License
|
|
78
78
|
|
|
79
|
-
I release any of the code here to the public domain. Feel free to copy/paste in part or in full without attribution.
|
|
79
|
+
I release any of the code I wrote here to the public domain. Feel free to copy/paste in part or in full without attribution.
|
|
80
|
+
|
|
81
|
+
Some parts of the codebase have been extracted from Chrome's devtools, MaterialUI, and stackoverflow, those contain a license notice or attribution in code comments, inline.
|
|
80
82
|
|
|
81
83
|
<p align="center">
|
|
82
84
|
<small>🔴🟠🟡🟢🔵🟣</small>
|
package/package.json
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "color-bits",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"exports": {
|
|
7
7
|
".": "./build/index.js",
|
|
8
|
-
"./*": "./build/*"
|
|
8
|
+
"./*": "./build/*",
|
|
9
|
+
"./string": "./build/string.js"
|
|
9
10
|
},
|
|
10
|
-
"keywords": [
|
|
11
|
+
"keywords": [
|
|
12
|
+
"color",
|
|
13
|
+
"colors"
|
|
14
|
+
],
|
|
11
15
|
"author": "",
|
|
12
16
|
"license": "ISC",
|
|
13
|
-
"description": "",
|
|
17
|
+
"description": "High performance color library",
|
|
14
18
|
"publishConfig": {
|
|
15
19
|
"ignore": [
|
|
16
20
|
"!build/",
|