-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 909 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "loduloading",
"version": "0.1.0",
"description": "The opposite of lazy loading. Ship the whole dataset inline, own it in WASM linear memory, walk it with zero-copy handles.",
"main": "src/lodu.js",
"files": [
"src/",
"dist/lodu_core.wasm",
"crates/",
"README.md",
"LICENSE"
],
"exports": {
".": "./src/lodu.js",
"./server": "./src/server.js",
"./encoder": "./src/encoder.js",
"./wasm": "./dist/lodu_core.wasm"
},
"scripts": {
"build:wasm": "cargo build --target wasm32-unknown-unknown --release -p lodu-core && cp target/wasm32-unknown-unknown/release/lodu_core.wasm dist/lodu_core.wasm",
"test": "node test/roundtrip.test.js",
"example": "node examples/server.js"
},
"keywords": [
"lodu",
"loading",
"preload",
"ssr",
"wasm",
"zero-copy"
],
"license": "MIT",
"engines": {
"node": ">=18"
}
}