-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 934 Bytes
/
package.json
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
{
"name": "wasmati",
"version": "0.2.4",
"description": "Write low-level WebAssembly, from JavaScript",
"type": "module",
"main": "build/index.js",
"types": "./build/index.d.ts",
"exports": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"scripts": {
"test": "node --loader=ts-node/esm examples/example.ts",
"build": "tsc",
"clean": "rm -rf build",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"files": [
"src",
"build"
],
"keywords": [
"webassembly",
"wasm"
],
"author": "Gregor Mitscha-Baude <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zksecurity/wasmati"
},
"dependencies": {
"ieee754": "^1.2.1"
},
"devDependencies": {
"@types/node": "^18.15.11",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"wabt": "^1.0.36"
}
}