-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from thewtex/wasm-packages
Wasm packages
- Loading branch information
Showing
19 changed files
with
7,938 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: mesh-to-poly-data | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- pytest | ||
- python=3.11 | ||
- pip | ||
- pip: | ||
- hatch | ||
- itkwasm-mesh-io |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,47 @@ | ||
{ | ||
"name": "wasm", | ||
"name": "@itk-wasm/mesh-to-poly-data-build", | ||
"version": "1.0.0", | ||
"description": "npm scripts to generate itk-wasm artifacts.", | ||
"private": true, | ||
"type": "module", | ||
"itk-wasm": { | ||
"emscripten-docker-image": "itkwasm/emscripten:20231217-40780708", | ||
"wasi-docker-image": "itkwasm/wasi:20231217-40780708", | ||
"typescript-package-name": "@itk-wasm/mesh-to-poly-data", | ||
"typescript-output-dir": "wasm/typescript", | ||
"python-package-name": "itkwasm-mesh-to-poly-data", | ||
"python-output-dir": "wasm/python", | ||
"package-description": "Convert an ITK Mesh to a simple data structure compatible with vtkPolyData.", | ||
"repository": "https://github.com/InsightSoftwareConsortium/ITKMeshToPolyData" | ||
}, | ||
"scripts": { | ||
"build": "npm run emscripten && npm run bindgen && npm run wasi", | ||
"emscripten": "npx itk-wasm -b emscripten-build build", | ||
"bindgen": "npx itk-wasm -b emscripten-build bindgen --output-dir wasm/typescript --package-name mesh-to-poly-data --package-description \"Convert an ITK Mesh to a simple data structure compatible with vtkPolyData.\" --repository 'https://github.com/InsightSoftwareConsortium/ITKMeshToPolyData'", | ||
"wasi": "npx itk-wasm -b wasi-build -i itkwasm/wasi build", | ||
"build": "pnpm build:gen:typescript && pnpm -r build && pnpm build:gen:python", | ||
"build:emscripten": "itk-wasm pnpm-script build:emscripten", | ||
"build:emscripten:debug": "itk-wasm pnpm-script build:emscripten:debug", | ||
"build:wasi": "itk-wasm pnpm-script build:wasi", | ||
"build:wasi:debug": "itk-wasm pnpm-script build:wasi:debug", | ||
"build:python:wasi": "itk-wasm pnpm-script build:python:wasi", | ||
"bindgen:typescript": "itk-wasm pnpm-script bindgen:typescript", | ||
"bindgen:python": "itk-wasm pnpm-script bindgen:python", | ||
"build:gen:typescript": "itk-wasm pnpm-script build:gen:typescript", | ||
"build:gen:python": "itk-wasm pnpm-script build:gen:python", | ||
"build:micromamba": "itk-wasm pnpm-script build:micromamba", | ||
"build:python:versionSync": "itk-wasm pnpm-script build:python:versionSync", | ||
"publish:python": "itk-wasm pnpm-script publish:python", | ||
"test": "pnpm test:data:download && pnpm -r test && pnpm test:python", | ||
"test:data:download": "echo \"not needed\"", | ||
"test:data:pack": "dam pack test/data test/data.tar.gz", | ||
"test:python:wasi": "itk-wasm pnpm-script test:python:wasi", | ||
"test:python:emscripten": "itk-wasm pnpm-script test:python:emscripten", | ||
"test:python:dispatch": "itk-wasm pnpm-script test:python:dispatch", | ||
"test:python": "itk-wasm pnpm-script test:python", | ||
"test:wasi": "itk-wasm pnpm-script test:wasi -- -V", | ||
"clean": "git clean -fdx -e node_modules" | ||
}, | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"itk-wasm": "^1.0.0-b.73" | ||
"@itk-wasm/dam": "^1.1.0", | ||
"@thewtex/setup-micromamba": "^1.9.7", | ||
"itk-wasm": "^1.0.0-b.165" | ||
} | ||
} |
Oops, something went wrong.