Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flexwilliams/fat-finger-picasso
A simple HTML Canvas drawing library
https://github.com/flexwilliams/fat-finger-picasso
Last synced: about 1 month ago
JSON representation
A simple HTML Canvas drawing library
- Host: GitHub
- URL: https://github.com/flexwilliams/fat-finger-picasso
- Owner: FlexWilliams
- License: mit
- Created: 2024-06-20T01:23:12.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-21T06:34:12.000Z (7 months ago)
- Last Synced: 2024-06-22T15:07:50.408Z (7 months ago)
- Language: Svelte
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fat finger picasso
A simple HTML Canvas drawing component
## Developing
```bash
# Install dependencies
pnpm install# Start demo server
pnpm dev# Test
pnpm test
```Everything inside `src/lib` is part of the library, everything inside `src/routes` is used for the demo app.
## Building
To build the library:
```bash
npm run package
```
To create a production version of the demo app:
```bash
npm run build
```
To preview the production build:
```bash
npm run preview
```## Publishing
```bash
npm publish
```