@hedystia/db 1.3.6 → 1.3.7

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/package.json +1 -1
  2. package/readme.md +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hedystia/db",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "description": "A database made by the company hedystia, easy to use",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
package/readme.md CHANGED
@@ -1,9 +1,9 @@
1
1
  ## Installation
2
2
 
3
3
  ```
4
- npm i hedystia.db
4
+ npm i @hedystia/db
5
5
 
6
- yarn add hedystia.db
6
+ yarn add @hedystia/db
7
7
  ```
8
8
 
9
9
  ## Nodejs Version
@@ -19,7 +19,7 @@ yarn add hedystia.db
19
19
  ## Example
20
20
 
21
21
  ```js
22
- const Database = require("hedystia.db");
22
+ const Database = require("@hedystia/db");
23
23
 
24
24
  // Create a file named database.ht and enter the password
25
25
  const database = new Database("./database.ht", "password");