-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 831 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 831 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
37
38
{
"name": "js-wasm-tools",
"version": "1.3.1",
"author": "Dominic Elm",
"description": "JavaScript version of wasm-tools, low level tooling for WebAssembly in Rust",
"type": "module",
"license": "MIT",
"main": "./dist/js_wasm_tools.js",
"types": "./dist/js_wasm_tools.d.ts",
"bin": {
"js-wasm-tools": "./bin/js-wasm-tools.mjs"
},
"exports": {
".": "./dist/js_wasm_tools.js",
"./wasm_tools_js_bg.wasm": "./dist/js_wasm_tools_bg.wasm"
},
"typesVersions": {
"*": {
"wasm_tools_js_bg.wasm": [
"./dist/js_wasm_tools_bg.wasm.d.ts"
]
}
},
"scripts": {
"build": "cd scripts; ./build.sh",
"prepack": "pnpm run build"
},
"files": [
"dist"
],
"keywords": [
"wasm-tools",
"webassembly"
],
"devDependencies": {
"prettier": "^2.8.0"
}
}