bio-forge-wasm 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +132 -0
- package/bio_forge_wasm.d.ts +319 -0
- package/bio_forge_wasm.js +5 -0
- package/bio_forge_wasm_bg.js +1180 -0
- package/bio_forge_wasm_bg.wasm +0 -0
- package/package.json +26 -0
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bio-forge-wasm",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"collaborators": [
|
|
5
|
+
"Tony Kan <tianchengkan@gmail.com>"
|
|
6
|
+
],
|
|
7
|
+
"description": "WebAssembly bindings for BioForge, a pure Rust library for the automated repair, preparation, and topology construction of biological macromolecules.",
|
|
8
|
+
"version": "0.3.0",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/TKanX/bio-forge"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"bio_forge_wasm_bg.wasm",
|
|
16
|
+
"bio_forge_wasm.js",
|
|
17
|
+
"bio_forge_wasm_bg.js",
|
|
18
|
+
"bio_forge_wasm.d.ts"
|
|
19
|
+
],
|
|
20
|
+
"main": "bio_forge_wasm.js",
|
|
21
|
+
"types": "bio_forge_wasm.d.ts",
|
|
22
|
+
"sideEffects": [
|
|
23
|
+
"./bio_forge_wasm.js",
|
|
24
|
+
"./snippets/*"
|
|
25
|
+
]
|
|
26
|
+
}
|