js-draw 0.0.2 → 0.0.3

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 +5 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,10 @@
1
1
  # js-draw
2
2
 
3
- ![](doc/img/js-draw.jpg)
3
+ [NPM package](https://www.npmjs.com/package/js-draw) | [GitHub](https://github.com/personalizedrefrigerator/js-draw) | [Try it!](https://personalizedrefrigerator.github.io/js-draw/example/example.html)
4
4
 
5
- For example usage, see [doc/example/example.ts](doc/example/example.ts).
5
+ ![](docs/img/js-draw.jpg)
6
+
7
+ For example usage, see [docs/example/example.ts](docs/example/example.ts).
6
8
 
7
9
  # API
8
10
 
@@ -63,7 +65,7 @@ For example, although `js-draw` doesn't support `<circle/>` elements,
63
65
  ```
64
66
  renders as
65
67
 
66
- ![screenshot of the image editor, displaying a green checkmark. The circle is invisible](doc/img/unsupported-elements--in-editor.png)
68
+ ![screenshot of the image editor, displaying a green checkmark. The circle is invisible](docs/img/unsupported-elements--in-editor.png)
67
69
 
68
70
  but exports to
69
71
  ```svg
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "js-draw",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Draw pictures using a pen, touchscreen, or mouse! JS-draw is a drawing library for JavaScript and TypeScript. ",
5
5
  "main": "dist/src/Editor.js",
6
6
  "types": "dist/src/Editor.d.ts",