Added readme

This commit is contained in:
Nathan Kunicki 2017-11-18 00:29:08 +00:00
parent d0607ae437
commit 47c4c9c151
2 changed files with 17 additions and 1 deletions

13
README.md Normal file
View File

@ -0,0 +1,13 @@
# BittMapp - A monochrome bitmap editor
A small browser-based tool for creating and editing black and white (monochrome) bitmaps.
### Building
Node.js v8.9.1+ required.
```bash
npm install && npm run build
```
Then open index.html in your browser of choice.

View File

@ -1,12 +1,15 @@
{
"name": "bittmapp",
"version": "0.0.1",
"description": "BittMapp - A bitmap image editor",
"description": "BittMapp - A monochrome bitmap editor",
"scripts": {
"build": "tsc"
},
"author": "Nathan Kunicki <me@nathankunicki.com>",
"license": "MIT",
"engines": {
"node" : ">=8.9.1"
},
"devDependencies": {
"typescript": "^2.6.1"
}