-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
17 lines (17 loc) · 992 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "itk-tubetk-wasm-builder",
"version": "1.0.0",
"description": "npm scripts to generate itk-wasm artifacts.",
"type": "module",
"scripts": {
"build": "npm run emscripten && npm run bindgen:typescript && npm run wasi",
"emscripten": "npx itk-wasm -b emscripten-build -i itkwasm/emscripten:20230825-eb2bf097 build . -- -DTubeTK_USE_VTK:BOOL=OFF",
"bindgen:typescript": "npx itk-wasm -b emscripten-build bindgen --output-dir wasm/typescript --package-name @itk-wasm/tubetk --package-description \"TubeTK is an open-source toolkit for the segmentation, registration, and analysis of tubes and surfaces in images, developed by Kitware, Inc.\" --repository 'https://github.com/InsightSoftwareConsortium/ITKTubeTK'",
"wasi": "npx itk-wasm -b wasi-build -i itkwasm/wasi:20230825-eb2bf097 build . -- -DTubeTK_USE_VTK:BOOL=OFF",
"clean": "git clean -fdx -e node_modules"
},
"license": "Apache-2.0",
"devDependencies": {
"itk-wasm": "^1.0.0-b.130"
}
}