@wgb5445/aptos-intent-npm 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ async function get_wasm (){
2
+ return (await import('./aptos_intent_bg-BhFZXsdI.js')).default()
3
+ }
4
+
5
+ export { get_wasm };
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@wgb5445/aptos-intent-npm",
3
+ "collaborators": [
4
+ "Aptos Labs <opensource@aptoslabs.com>"
5
+ ],
6
+ "description": "Generating Move Script from intent",
7
+ "version": "0.0.1",
8
+ "type": "module",
9
+ "license": "Apache-2.0",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/aptos-labs/aptos-core"
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "module": "dist/esm/entry.js",
18
+ "homepage": "https://aptoslabs.com",
19
+ "sideEffects": [
20
+ "./snippets/*"
21
+ ],
22
+ "devDependencies": {
23
+ "@rollup/plugin-wasm": "^6.2.2"
24
+ }
25
+ }