
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@live-ui/react
Advanced tools
Boilerplate to create library with Vite, Typescript and React.js
:bust_in_silhouette: Pâmela Vieira da Silva - @panhavsilva
yarn
yarn dev
#dev server running at: http://localhost:3000/
| Script | Description |
|---|---|
yarn dev | Run dev server |
yarn build | Generates production build |
yarn lint | Run linter |
yarn lint:fix | Fix lint errors |
yarn type-check | TS type checking |
yarn ci | Run lint, type checking and tests (meant to be used in a CI) |
yarn prepare | Not supposed to be manually used. It's just to configure husky |



{
"name": "", //@+"your username NPM"/"name of your lib" without quotes and plus signal
"description": "", //description of your lib
"main": "./dist/name of your lib.umd.js", //put the name of your lib.umd.js
"module": "./dist/name of your lib.es.js", //put the name of your lib.es.js
"types": "./dist/lib/main.d.ts", // put the name of your lib.d.ts
"exports": {
".": {
"import": "./dist/name of your lib.es.js", // put the name of your lib.es.js
"require": "./dist/name of your lib.umd.js" // put the name of your lib.umd.js
}
},
"repository": {
"type": "git",
"url": "" //url of repository of your lib on Github
},
"keywords": [], //include keywords searched in NPM relative to your lib
"author": "", //your name
"bugs": {
"url": "https://github.com/your username/your repository/issues" //url of repository of your lib on Github/issues
},
"homepage": "https://github.com/your username/your repository#readme" //url of repository of your lib on Github#readme
}
{
"paths": {
"@username NPM/name of your lib": [ "./lib/name of your lib.tsx" ]
} //put @ + your username NPM/name of your lib: put the name of your lib
}
build: {
lib: {
entry: resolve('lib', 'main.tsx'),
name: 'ReactFeatureFlag',
fileName: (format) => `name of your lib.${format}.js`, //put the name of your lib
},
rollupOptions: {
external: ['react'],
},
},
Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.
Give a ⭐️ if this project helped you!
Copyright © current Pâmela Vieira da Silva - @panhavsilva.
This project is MIT licensed.
FAQs
Boilerplate to create library with Vite, Typescript and React.js
We found that @live-ui/react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.