@moltendb-web/core 0.1.0-alpha.10

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.
Binary file
@@ -0,0 +1,15 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ export const memory: WebAssembly.Memory;
4
+ export const __wbg_workerdb_free: (a: number, b: number) => void;
5
+ export const workerdb_analytics: (a: number, b: number, c: number, d: number) => void;
6
+ export const workerdb_handle_message: (a: number, b: number, c: number) => void;
7
+ export const workerdb_new: (a: number, b: number) => number;
8
+ export const __wasm_bindgen_func_elem_3598: (a: number, b: number) => void;
9
+ export const __wasm_bindgen_func_elem_3677: (a: number, b: number, c: number, d: number) => void;
10
+ export const __wasm_bindgen_func_elem_3690: (a: number, b: number, c: number, d: number) => void;
11
+ export const __wbindgen_export: (a: number, b: number) => number;
12
+ export const __wbindgen_export2: (a: number, b: number, c: number, d: number) => number;
13
+ export const __wbindgen_export3: (a: number) => void;
14
+ export const __wbindgen_export4: (a: number, b: number, c: number) => void;
15
+ export const __wbindgen_add_to_stack_pointer: (a: number) => number;
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@moltendb-web/core",
3
+ "version": "0.1.0-alpha.10",
4
+ "description": "MoltenDB WASM runtime — the database engine, Web Worker, and main-thread client in one package.",
5
+ "type": "module",
6
+ "author": "Maximilian Both <maximilian.both27@outlook.com>",
7
+ "license": "LICENSE.md",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/maximilian27/moltendb-web/tree/master/packages/core"
11
+ },
12
+ "files": [
13
+ "dist/",
14
+ "README.md",
15
+ "LICENSE.md"
16
+ ],
17
+ "exports": {
18
+ ".": {
19
+ "import": "./dist/index.js",
20
+ "types": "./dist/index.d.ts"
21
+ },
22
+ "./worker": "./dist/moltendb-worker.js",
23
+ "./wasm": "./dist/moltendb.js",
24
+ "./wasm-bg": "./dist/moltendb_bg.wasm"
25
+ },
26
+ "main": "./dist/index.js",
27
+ "types": "./dist/index.d.ts",
28
+ "devDependencies": {
29
+ "typescript": "^6.0.1-rc"
30
+ },
31
+ "keywords": [
32
+ "database",
33
+ "wasm",
34
+ "webassembly",
35
+ "nosql",
36
+ "local-first",
37
+ "opfs",
38
+ "indexeddb",
39
+ "embedded"
40
+ ]
41
+ }