@citadeldb/wasm 0.3.0 → 0.4.0
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 +1 -1
- package/citadel_wasm_bg.wasm +0 -0
- package/package.json +15 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @citadeldb/wasm
|
|
2
2
|
|
|
3
|
-
WebAssembly bindings for [Citadel](https://github.com/yp3y5akh0v/citadel)
|
|
3
|
+
WebAssembly bindings for [Citadel](https://github.com/yp3y5akh0v/citadel) - an encrypted-first embedded database engine that outperforms unencrypted SQLite.
|
|
4
4
|
|
|
5
5
|
Every value is encrypted at rest with AES-256-CTR + HMAC-SHA256. Runs entirely in the browser or Node.js with no server required.
|
|
6
6
|
|
package/citadel_wasm_bg.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -2,11 +2,12 @@
|
|
|
2
2
|
"name": "@citadeldb/wasm",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"description": "WASM bindings for Citadel encrypted database",
|
|
5
|
-
"version": "0.
|
|
6
|
-
"keywords": ["database", "embedded-database", "encryption", "encrypted-database", "sql", "wasm", "webassembly"],
|
|
7
|
-
"homepage": "https://citadeldb.dev",
|
|
8
|
-
"repository": {"type": "git", "url": "git+https://github.com/yp3y5akh0v/citadel.git"},
|
|
5
|
+
"version": "0.4.0",
|
|
9
6
|
"license": "MIT OR Apache-2.0",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/yp3y5akh0v/citadel"
|
|
10
|
+
},
|
|
10
11
|
"files": [
|
|
11
12
|
"citadel_wasm_bg.wasm",
|
|
12
13
|
"citadel_wasm.js",
|
|
@@ -15,9 +16,19 @@
|
|
|
15
16
|
"LICENSE-MIT"
|
|
16
17
|
],
|
|
17
18
|
"main": "citadel_wasm.js",
|
|
19
|
+
"homepage": "https://citadeldb.dev",
|
|
18
20
|
"types": "citadel_wasm.d.ts",
|
|
19
21
|
"sideEffects": [
|
|
20
22
|
"./citadel_wasm.js",
|
|
21
23
|
"./snippets/*"
|
|
24
|
+
],
|
|
25
|
+
"keywords": [
|
|
26
|
+
"database",
|
|
27
|
+
"embedded-database",
|
|
28
|
+
"encryption",
|
|
29
|
+
"encrypted-database",
|
|
30
|
+
"sql",
|
|
31
|
+
"wasm",
|
|
32
|
+
"webassembly"
|
|
22
33
|
]
|
|
23
34
|
}
|