
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@lilithmod/composition
Advanced tools
Write complex Minecraft chat components in Typescript using tagged template literals.
Are you tired of writing:
let component = {
text: "Hello, ",
color: "red",
italic: true,
extra: [
{
text: "Wor",
color: "green",
hoverEvent: {
action: "show_text",
value: {
text: "Nested component ",
color: "red",
extra: [
{
text: "again",
bold: true
}
]
}
},
extra: [
{
text: "ld",
color: "dark_green"
}
]
},
{
text: "!!",
underlined: true
}
]
}
Composition lets you write the following:
c`Hello, ${
green`Wor${darkGreen`ld`}`.hover(red`Nested component ${bold`again`}`)
}${underlined`!!`}`.red().italic().json()
...which is just a little more ergonomic. To make it even more concise, you can use Notchian color codes in every segment:
c`&c§oHello, ${
hover`${c`&cNested component ${c`&lagain`}`} &aWor${c`&2ld`}`
}${underlined`!!`}`.red().italic().json() // Both & and § work
You can also use a minimal builder syntax if you want:
new TextComponentBuilder("This is a blue link!")
.link('https://example.com')
.underlined()
.blue()
.extra(
new TextComponentBuilder(" (and this is some other text)")
.gray()
.underlined(false)
)
.json()
There are also some cool shortcut template literals for writing translation components or click/hover events:
t`translation.key.goes.here ${'and here'} ${'are as many subsitutions'} ${'as you want'}
${'without restrictions on whitespace'}`
link`${'https://any-url-goes.here'} Text content for your link`
// For every one of these shortcuts that needs one tag as a special parameter, the first space
// following it is removed for spacing reasons.
And finally, functions for the rest of the weird chat components.
k('forward') // keybind with no "key." necessary
score('player', 'objective', 'value') // this is up to you to figure out
sel('@a') // selector
FAQs
Write complex Minecraft chat components in Typescript using tagged template literals.
We found that @lilithmod/composition demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.