json-database-st 1.0.0 → 1.0.2

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 +0 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -25,8 +25,6 @@ Ideal for small projects, prototypes, configuration management, or simple data p
25
25
  ```bash
26
26
  # Make sure you have lodash installed as well
27
27
  npm install json-database-st lodash
28
- # or
29
- yarn add json-database-st lodash
30
28
  ```
31
29
 
32
30
 
package/package.json CHANGED
@@ -1,9 +1,8 @@
1
1
  {
2
2
  "name": "json-database-st",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "A simple, promise-based JSON file database for Node.js with atomic operations and lodash integration.",
5
5
  "main": "JSONDatabase.js",
6
- "types": "JSONDatabase.d.ts",
7
6
  "scripts": {
8
7
  "test": "echo \"Error: no test specified\" && exit 1"
9
8
  },
@@ -31,6 +30,7 @@
31
30
  },
32
31
  "homepage": "https://github.com/sethunthunder111/json-database-st#readme",
33
32
  "dependencies": {
33
+ "json-database-st": "^1.0.0",
34
34
  "lodash": "^4.17.21"
35
35
  },
36
36
  "engines": {