genosdb 0.9.8 → 0.9.9
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 +2 -5
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -12,6 +12,7 @@ A lightweight, decentralized graph database designed for modern web applications
|
|
|
12
12
|
|
|
13
13
|

|
|
14
14
|
[](https://www.jsdelivr.com/package/npm/genosdb)
|
|
15
|
+
[](https://estebanrfp.github.io/gdb/tests/html/test-results.html)
|
|
15
16
|
|
|
16
17
|

|
|
17
18
|
|
|
@@ -142,6 +143,7 @@ We’ve created a collection of interactive examples to help you understand how
|
|
|
142
143
|
|
|
143
144
|
- [View Roadmap](./ROADMAP.md)
|
|
144
145
|
- [View Whitepaper](./WHITEPAPER.md)
|
|
146
|
+
- [View Philosophy](./PHILOSOPHY.md)
|
|
145
147
|
|
|
146
148
|
---
|
|
147
149
|
|
|
@@ -210,11 +212,6 @@ We value community contributions and discussions! Here's how you can get involve
|
|
|
210
212
|
- **Ask questions or share ideas**: Join our [GitHub Discussions](https://github.com/estebanrfp/gdb/discussions).
|
|
211
213
|
- **Real-time chat**: For quick conversations, join us on [Gitter](https://app.gitter.im/#/room/#GDB:gitter.im).
|
|
212
214
|
|
|
213
|
-
Here’s how you can participate in the Gitter room:
|
|
214
|
-
|
|
215
|
-
- `[DEV]`: Discussions about project development, new features, and technical improvements.
|
|
216
|
-
- `[ANNOUNCEMENT]`: Official updates, new releases, and important news about GDB.
|
|
217
|
-
- `[HELP]`: Technical support and troubleshooting for GDB-related questions.
|
|
218
215
|
|
|
219
216
|
Feel free to ask questions, share ideas, or just say hello! 👋
|
|
220
217
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "genosdb",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.9",
|
|
4
4
|
"description": "GenosDB (GDB): distributed graph database in real-time, peer-to-peer, scalable storage - efficient querying of complex relationships.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"module": "./dist/index.js",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "bun esbun.js",
|
|
10
|
-
"dev": "bun run --watch"
|
|
10
|
+
"dev": "bun run --watch",
|
|
11
|
+
"test": "vitest run --pool=threads --maxWorkers=1 --reporter=verbose --reporter=html --outputFile=tests/html/test-results.html"
|
|
11
12
|
},
|
|
12
13
|
"files": [
|
|
13
14
|
"dist"
|
|
@@ -43,8 +44,11 @@
|
|
|
43
44
|
},
|
|
44
45
|
"dependencies": {
|
|
45
46
|
"@msgpack/msgpack": "3.1.2",
|
|
47
|
+
"@vitest/ui": "3.2.4",
|
|
46
48
|
"ethers": "6.15.0",
|
|
47
|
-
"
|
|
49
|
+
"jsdom": "26.1.0",
|
|
50
|
+
"pako": "2.1.0",
|
|
51
|
+
"vitest": "3.2.4"
|
|
48
52
|
},
|
|
49
53
|
"devDependencies": {
|
|
50
54
|
"eslint": "9.32.0",
|