ma-dino-game 0.1.1 → 0.1.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 +17 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,4 +2,20 @@
2
2
 
3
3
  Simple Dino Game
4
4
 
5
- ### `npm i ma-dino-game`
5
+ ![Gameplay](https://raw.githubusercontent.com/mamir6693/ma-dino-game/refs/heads/master/public/gameplay.png)
6
+
7
+ ### Installation
8
+
9
+ ```bash
10
+ npm i ma-dino-game
11
+ ```
12
+
13
+ ### Usage
14
+
15
+ ```jsx
16
+ import DinoGame from 'ma-dino-game';
17
+
18
+ function App() {
19
+ return <DinoGame />;
20
+ }
21
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ma-dino-game",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Dino Game",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",