gka / chroma.js

JavaScript library for all kinds of color manipulations
https://vis4.net/chromajs/
Other
9.94k stars 543 forks source link

Inquiry regarding re-exposure of chroma.js #327

Closed EDM115 closed 1 month ago

EDM115 commented 5 months ago

Hello 👋

I'm currently working on a color palette generator package, and it uses chroma.js
I am considering re-exposing the chroma object as part of my package's public API. This would involve importing chroma.js and exporting it directly to users of my package, alongside my own functions, like this :

import chroma from 'chroma-js'

// functions...

export {
    chroma,
    // functions...
}

Before proceeding with this approach, I wanted to reach out and ensure that this use case aligns with your licensing terms and your vision for chroma.js's application in external projects. My goal is to respect your work and comply with any guidelines you may have for using chroma.js in this manner.
Also, do I need to add your license alongside mine (my project will be released under the MIT License) ?

Thanks in advance