@minnowdb/core 0.0.1

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 ADDED
@@ -0,0 +1,3 @@
1
+ # @minnowdb/core
2
+
3
+ Name reserved. A small, fast browser-native relational database is coming here soon.
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {};
package/index.js ADDED
@@ -0,0 +1 @@
1
+ export {};
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@minnowdb/core",
3
+ "version": "0.0.1",
4
+ "description": "A small, fast browser-native relational database engine. Name reserved — real release coming soon.",
5
+ "type": "module",
6
+ "main": "index.js",
7
+ "types": "index.d.ts",
8
+ "files": [
9
+ "index.js",
10
+ "index.d.ts",
11
+ "README.md"
12
+ ],
13
+ "keywords": [
14
+ "database",
15
+ "browser",
16
+ "indexeddb",
17
+ "sql",
18
+ "relational"
19
+ ],
20
+ "license": "MIT",
21
+ "engines": {
22
+ "node": ">=22"
23
+ }
24
+ }