@enbox/dwn-sql-store 0.0.11 → 0.0.13
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/package.json +13 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enbox/dwn-sql-store",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"description": "SQL backed implementations of DWN MessageStore, DataStore, and StateIndex",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -23,39 +23,38 @@
|
|
|
23
23
|
},
|
|
24
24
|
"react-native": "./dist/esm/src/main.js",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@aws-sdk/client-s3": "
|
|
27
|
-
"@aws-sdk/lib-storage": "
|
|
28
|
-
"@enbox/dwn-sdk-js": "0.1
|
|
26
|
+
"@aws-sdk/client-s3": "3.700.0",
|
|
27
|
+
"@aws-sdk/lib-storage": "3.700.0",
|
|
28
|
+
"@enbox/dwn-sdk-js": "0.2.1",
|
|
29
29
|
"@ipld/dag-cbor": "9.0.5",
|
|
30
30
|
"interface-blockstore": "5.2.3",
|
|
31
31
|
"interface-store": "5.1.2",
|
|
32
32
|
"ipfs-unixfs-exporter": "13.1.5",
|
|
33
33
|
"ipfs-unixfs-importer": "15.1.5",
|
|
34
34
|
"kysely": "0.26.3",
|
|
35
|
-
"multiformats": "
|
|
35
|
+
"multiformats": "11.0.2"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@types/bun": "
|
|
38
|
+
"@types/bun": "1.3.10",
|
|
39
39
|
"@types/express": "4.17.17",
|
|
40
|
-
"@types/node": "
|
|
40
|
+
"@types/node": "22.19.15",
|
|
41
41
|
"@types/pg": "8.10.2",
|
|
42
42
|
"@types/pg-cursor": "2.7.0",
|
|
43
43
|
"@types/supertest": "2.0.12",
|
|
44
44
|
"@typescript-eslint/eslint-plugin": "8.32.1",
|
|
45
45
|
"@typescript-eslint/parser": "8.32.1",
|
|
46
|
-
"bun-types": "
|
|
47
|
-
"esbuild": "
|
|
46
|
+
"bun-types": "1.3.10",
|
|
47
|
+
"esbuild": "0.23.0",
|
|
48
48
|
"eslint": "9.7.0",
|
|
49
49
|
"mysql2": "3.9.8",
|
|
50
|
-
"pg": "8.11.
|
|
51
|
-
"pg-cursor": "2.10.
|
|
52
|
-
"
|
|
53
|
-
"typescript": "5.5.4"
|
|
50
|
+
"pg": "8.11.2",
|
|
51
|
+
"pg-cursor": "2.10.2",
|
|
52
|
+
"typescript": "5.9.3"
|
|
54
53
|
},
|
|
55
54
|
"scripts": {
|
|
56
55
|
"build:esm": "bun run clean && tsc",
|
|
57
56
|
"build": "bun run clean && bun run build:esm",
|
|
58
|
-
"clean": "
|
|
57
|
+
"clean": "rm -rf dist compiled",
|
|
59
58
|
"lint": "eslint . --max-warnings 0",
|
|
60
59
|
"lint:fix": "eslint . --fix",
|
|
61
60
|
"test": "bun test --timeout 10000 .spec.ts",
|