-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 KB
/
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
42
43
44
45
{
"name": "webassembly-wasi-experiments",
"version": "0.1.0",
"private": true,
"description": "Discover WebAssembly System Interface (WASI) with C/Rust use cases",
"main": "index.js",
"scripts": {
"start": "npm run browser:build && npm run browser:serve",
"browser:dev": "parcel --port=5000 ./browser/*.html",
"browser:build": "npx rimraf ./dist && parcel build --public-url ./ --no-minify ./browser/*.html",
"browser:serve": "live-server ./dist --port=5000 --watch=. --ignore=node_modules --no-browser",
"deploy": "gh-pages -d dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"staticFiles": {
"staticPath": [
"browser"
],
"watcherGlob": "*.wasm"
},
"keywords": [
"WebAssembly",
"WASI",
"wasm",
"C",
"Rust",
"Wasmtime",
"Wasmer"
],
"author": "Christophe Rosset <tophe@topheman.com> (http://labs.topheman.com/)",
"license": "ISC",
"devDependencies": {
"gh-pages": "^3.1.0",
"live-server": "^1.2.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.5.0",
"prettier": "2.2.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"@wasmer/wasi": "^0.12.0",
"@wasmer/wasm-transformer": "^0.12.0",
"@wasmer/wasmfs": "^0.12.0"
}
}