inibase 1.0.0-rc.7 → 1.0.0-rc.8

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.
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  ## Features
10
10
 
11
- - **Lightweight** 🪶 (~60kb)
11
+ - **Lightweight** 🪶 (~80kb)
12
12
  - **Minimalist** :white_circle:
13
13
  - **TypeScript** :large_blue_diamond:
14
14
  - **Super-Fast** :turtle:
package/file.ts CHANGED
File without changes
package/index.ts CHANGED
File without changes
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "inibase",
3
- "version": "1.0.0-rc.7",
3
+ "version": "1.0.0-rc.8",
4
4
  "description": "File-based Relational Database for large data",
5
5
  "main": "index.ts",
6
6
  "type": "module",
7
+ "scripts": {
8
+ "test": "npx tsx watch ./index.test.ts"
9
+ },
7
10
  "repository": {
8
11
  "type": "git",
9
12
  "url": "git+https://github.com/inicontent/inibase.git"
@@ -31,8 +34,5 @@
31
34
  "homepage": "https://github.com/inicontent/inibase#readme",
32
35
  "devDependencies": {
33
36
  "@types/node": "^20.8.6"
34
- },
35
- "scripts": {
36
- "test": "npx tsx watch ./index.test.ts"
37
37
  }
38
- }
38
+ }
package/utils.ts CHANGED
File without changes