@enbox/dwn-sql-store 0.0.1 → 0.0.2
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 +15 -15
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.2",
|
|
4
4
|
"description": "SQL backed implementations of DWN MessageStore, DataStore, and EventLog",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
},
|
|
25
25
|
"react-native": "./dist/esm/src/main.js",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@enbox/dwn-sdk-js": "workspace:*",
|
|
28
27
|
"@ipld/dag-cbor": "9.0.5",
|
|
29
28
|
"kysely": "0.26.3",
|
|
30
29
|
"multiformats": "12.0.1",
|
|
31
|
-
"readable-stream": "4.4.2"
|
|
30
|
+
"readable-stream": "4.4.2",
|
|
31
|
+
"@enbox/dwn-sdk-js": "0.0.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/better-sqlite3": "7.6.4",
|
|
@@ -57,16 +57,6 @@
|
|
|
57
57
|
"sinon": "^18.0.1",
|
|
58
58
|
"typescript": "5.0.4"
|
|
59
59
|
},
|
|
60
|
-
"scripts": {
|
|
61
|
-
"build:esm": "pnpm clean & tsc",
|
|
62
|
-
"build:cjs": "pnpm build:esm && node build/create-cjs-bundle.cjs && echo '{\"type\": \"commonjs\"}' > ./dist/cjs/package.json",
|
|
63
|
-
"build": "pnpm clean && pnpm build:esm && pnpm build:cjs",
|
|
64
|
-
"clean": "rimraf dist compiled",
|
|
65
|
-
"lint": "eslint . --ext .ts --max-warnings 0",
|
|
66
|
-
"lint:fix": "eslint . --ext .ts --fix",
|
|
67
|
-
"test": "rimraf compiled && tsc -p tests/tsconfig.json && mocha",
|
|
68
|
-
"test-coverage": "rimraf compiled && tsc -p tests/tsconfig.json && c8 mocha"
|
|
69
|
-
},
|
|
70
60
|
"files": [
|
|
71
61
|
"dist",
|
|
72
62
|
"src"
|
|
@@ -87,5 +77,15 @@
|
|
|
87
77
|
"name": "Liran Cohen",
|
|
88
78
|
"url": "https://github.com/lirancohen"
|
|
89
79
|
}
|
|
90
|
-
]
|
|
91
|
-
|
|
80
|
+
],
|
|
81
|
+
"scripts": {
|
|
82
|
+
"build:esm": "pnpm clean & tsc",
|
|
83
|
+
"build:cjs": "pnpm build:esm && node build/create-cjs-bundle.cjs && echo '{\"type\": \"commonjs\"}' > ./dist/cjs/package.json",
|
|
84
|
+
"build": "pnpm clean && pnpm build:esm && pnpm build:cjs",
|
|
85
|
+
"clean": "rimraf dist compiled",
|
|
86
|
+
"lint": "eslint . --ext .ts --max-warnings 0",
|
|
87
|
+
"lint:fix": "eslint . --ext .ts --fix",
|
|
88
|
+
"test": "rimraf compiled && tsc -p tests/tsconfig.json && mocha",
|
|
89
|
+
"test-coverage": "rimraf compiled && tsc -p tests/tsconfig.json && c8 mocha"
|
|
90
|
+
}
|
|
91
|
+
}
|