* Update and clean up AssemblyScript example * Remove wasm build files * Remove wasm source files
20 lines
460 B
JSON
20 lines
460 B
JSON
{
|
|
"name": "wasi-hello-world",
|
|
"version": "1.0.0",
|
|
"description": "Hello world in Wasi with AS and as-wasi",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "asc wasi-hello-world.ts --target helloworld",
|
|
"wasmtime": "wasmtime ./build/wasi-hello-world.wasm"
|
|
},
|
|
"author": "Aaron Turner",
|
|
"contributors": [
|
|
"Jairus Tanaka (JairusSW)"
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"assemblyscript": "^0.20.7"
|
|
},
|
|
"dependencies": {}
|
|
}
|