marlarky 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -27,6 +27,12 @@ Marlarky is a faker-like library and CLI that produces grammatically correct Eng
27
27
  npm install marlarky
28
28
  ```
29
29
 
30
+ ## Source Code & Issues
31
+ **Source**: https://github.com/JPaulDuncan/malarky
32
+ **Issues**: https://github.com/JPaulDuncan/malarky/issues
33
+ **Additional Usage**: https://jpaulduncan.github.io/malarky/usage.md
34
+ **License**: MIT
35
+
30
36
  ## Quick Start
31
37
 
32
38
  ### TypeScript / JavaScript
@@ -233,7 +239,7 @@ const result = generator.sentence({
233
239
  });
234
240
  ```
235
241
 
236
- Transforms can also be configured at the lexicon level or per-archetype in your lexicon JSON. See the [usage guide](usage.md#output-transforms) for details.
242
+ Transforms can also be configured at the lexicon level or per-archetype in your lexicon JSON. See the [usage guide](https://jpaulduncan.github.io/malarky/usage.md) for details.
237
243
 
238
244
  ## Sentence Types
239
245
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marlarky",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Marlarky - A faker-like library for generating syntactically plausible English text",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",