From 9d3bde8ca42bcd19690f2300a1b0c971d551dec8 Mon Sep 17 00:00:00 2001 From: JLarky Date: Wed, 13 Nov 2024 02:22:36 -0700 Subject: [PATCH] add description for solid hack --- README.md | 7 +++++++ demo/package.json | 8 ++++++++ 2 files changed, 15 insertions(+) diff --git a/README.md b/README.md index 0e8f52d..e555151 100644 --- a/README.md +++ b/README.md @@ -1 +1,8 @@ # lift-html + +lift-html is a tiny library for building HTML Web Components, components that are meant to enhance existing HTML on the page instead of rendering it on the client or hydrating it. It utilizes SolidJS to make attributes reactive, uses signals for state management and uses hooks to better manipulate the DOM. + +Code for `liftHtml` is public domain, so you are free to skip the dependency and copy the code into your project. Do that if: +- you don't want to add another npm/jsr dependency +- you want to remove the parts of the code you don't need +- you want to quickly modify the code for your project or even a single component diff --git a/demo/package.json b/demo/package.json index 428eb6b..e3589af 100644 --- a/demo/package.json +++ b/demo/package.json @@ -1,6 +1,14 @@ { "name": "demo", "type": "module", + "description": "lift-html is a tiny library for building HTML Web Components, components that are meant to enhance existing HTML on the page instead of rendering it on the client or hydrating it. It utilizes SolidJS to make attributes reactive, uses signals for state management and uses hooks to better manipulate the DOM.", + "contributors": [ + { + "name": "Yaroslav (JLarky) Lapin", + "email": "jlarky@gmail.com", + "url": "https://jlarky.now.sh/" + } + ], "scripts": { "dev": "vinxi dev", "build": "vinxi build",