Logic for the Killer card game
npm install @budajeff/killer-game-logic

Minimal Library Starter Kit for your Typescript projects
- Webpack 5
- Babel 7
- Hot reloading (npm start)
- Automatic Types file generation (index.d.ts)
- UMD exports, so your library works everywhere.
- Jest unit testing
- Daily dependabot dependency updates
```
git clone https://github.com/hodgef/ts-library-boilerplate-basic.git myLibrary
npm install
> Before shipping, make sure to:
1. Edit LICENSE filepackage.json
2. Edit information (These will be used to generate the headers for your built files)library: "MyLibrary"
3. Edit with your library's export name in ./webpack.config.js
1. npm publish
2. Your users can include your library as usual
``
import MyLibrary from 'my-library';
const libraryInstance = new MyLibrary();
...
`
const MyLibrary = window.MyLibrary.default;
const libraryInstance = new MyLibrary();
...
``
> Made a library using this starter kit? Share it here by submitting a pull request!
- simple-keyboard - Javascript Virtual Keyboard
- react-simple-keyboard - React Virtual Keyboard
- simple-keyboard-layouts - Keyboard layouts for simple-keyboard