-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
23 lines (23 loc) · 1015 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
{
"name": "@itk-wasm/inputs-outputs-tutorial",
"version": "1.0.3",
"description": "itk-wasm example for the pipeline inputs/outputs tutorial",
"main": "index.mjs",
"type": "module",
"scripts": {
"build": "npm run build:wasi && npm run build:emscripten",
"build:wasi": "itk-wasm -i itkwasm/wasi build",
"build:emscripten": "itk-wasm -i itkwasm/emscripten:latest-debug build -b emscripten-build -- -DCMAKE_BUILD_TYPE=Debug",
"test": "npm run test:wasi && npm run test:wasi:help && npm run test:emscripten",
"test:wasi": "itk-wasm -b wasi-build run inputs-outputs.wasi.wasm -- -- cthead1.png smoothed.png",
"test:wasi:help": "itk-wasm -b wasi-build run inputs-outputs.wasi.wasm -- -- --help",
"test:emscripten": "node ./index.mjs --radius 2 ./cthead1.png smoothed.png"
},
"author": "Matt McCormick <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"fs-extra": "^10.0.0",
"itk-image-io": "^1.0.0-b.83",
"itk-wasm": "^1.0.0-b.83"
}
}