~repos /atoms-element

#js

git clone https://pyrossh.dev/repos/atoms-element.git

A simple web component library for defining your custom elements. It works on both client and server.



file:

package.json



{
"name": "atoms-element",
"version": "3.0.1",
"description": "A simple web component library for defining your custom elements. It works on both client and server. It supports hooks and follows the same principles of react.",
"keywords": [
"pyrossh",
"atoms-element",
"web",
"component",
"ssr",
"client",
"server",
"react",
"lit-html"
],
"files": [
"lit-html.js",
"index.js",
"index.d.ts"
],
"license": "MIT",
"author": "pyrossh",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"example": "node example/server.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"devDependencies": {
"jest": "^27.0.5"
},
"jest": {
"transform": {}
},
"prettier": {
"printWidth": 160,
"singleQuote": true,
"arrowParens": "always",
"trailingComma": "all"
}
}