update readme, package.json

This commit is contained in:
marihachi 2021-03-27 01:48:04 +09:00
parent bffb7b5b9b
commit ae2296d6e1
2 changed files with 3 additions and 3 deletions

View file

@ -5,13 +5,13 @@ An MFM parser implementation with PEG.js
## Installation
```
npm i rosee
npm i mfm-js
```
## Usage
TypeScript:
```ts
import * as mfm from 'rosee';
import * as mfm from 'mfm-js';
const inputText =
`<center>

View file

@ -1,7 +1,7 @@
{
"name": "mfm-js",
"version": "0.8.0",
"description": "A MFM parser implementation with PEG.js",
"description": "An MFM parser implementation with PEG.js",
"main": "./built/index.js",
"scripts": {
"build": "npm run tsc && npm run peg",