-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@easywasm/memory",
"type": "module",
"version": "0.0.3",
"description": "simple & light helpers for working with C-memory",
"keywords": [
"struct",
"string",
"wasm",
"ffi",
"napi",
"wasi"
],
"author": "David Konsumer <konsumer@jetboystudio.com> (https://konsumer.js.org)",
"license": "MIT",
"source": "src/index.js",
"exports": {
"require": "./dist/cmem_helpers.cjs",
"default": "./dist/cmem_helpers.modern.js"
},
"main": "./dist/cmem_helpers.cjs",
"module": "./dist/cmem_helpers.module.js",
"unpkg": "./dist/cmem_helpers.umd.js",
"scripts": {
"build": "npx -y microbundle",
"prepublishOnly": "npm run build",
"test": "node --test",
"build:wasm": "/opt/wasi-sdk/bin/clang -Wl,--import-memory -Wl,--allow-undefined -Wl,--export-all -Wl,--no-entry -o test/test.wasm test/wasm/test.c"
},
"homepage": "https://github.com/konsumer/cmem_helpers#readme",
"bugs": {
"url": "https://github.com/konsumer/cmem_helpers/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/konsumer/cmem_helpers.git"
},
"files": [
"./dist/cmem_helpers.cjs",
"./dist/cmem_helpers.modern.js",
"./dist/cmem_helpers.umd.js",
"./dist/cmem_helpers.cjs.map",
"./dist/cmem_helpers.modern.js.map",
"./dist/cmem_helpers.umd.js.map"
],
"devDependencies": {
"@easywasm/wasi": "^0.0.8"
}
}