graphddb 0.7.4 → 0.7.6
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/dist/cli.js +2736 -642
- package/package.json +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphddb",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.6",
|
|
4
4
|
"description": "Graph data modeling on DynamoDB with adjacency list pattern",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "tsup",
|
|
43
|
-
"sync:
|
|
43
|
+
"sync:versions": "node scripts/sync-versions.mjs",
|
|
44
44
|
"test": "vitest run",
|
|
45
45
|
"test:ci": "vitest run",
|
|
46
46
|
"test:unit": "vitest run",
|
|
@@ -66,7 +66,10 @@
|
|
|
66
66
|
"embedoc:build": "embedoc build",
|
|
67
67
|
"embedoc:watch": "embedoc watch",
|
|
68
68
|
"embedoc:generate": "embedoc generate --all",
|
|
69
|
-
"embedoc:check": "node scripts/embedoc-drift-check.mjs"
|
|
69
|
+
"embedoc:check": "node scripts/embedoc-drift-check.mjs",
|
|
70
|
+
"bench:crosslang": "tsx benchmark/crosslang/run.ts",
|
|
71
|
+
"bench:crosslang:integration": "tsx benchmark/crosslang/integration.ts",
|
|
72
|
+
"bench:crosslang:test": "vitest run benchmark/crosslang/__tests__"
|
|
70
73
|
},
|
|
71
74
|
"size-limit": [
|
|
72
75
|
{
|